我正在尝试在Apple CareKit Framework中实现基本功能。但我无法导航到OCKCareCardViewController。
请在Github上找到我的代码 https://github.com/sandesh271991/CareKitDemo
请指导我做错的地方
答案 0 :(得分:0)
您正在执行self.navigationController?.pushViewController(careCardViewController, animated: true)
,但您的ViewController没有navigationController。
在故事板中添加导航控制器,使其成为初始视图控制器,并将ViewController作为其rootViewController,并且您的代码应该正常工作(参见附图)。Navigation Controller to ViewController