我正在尝试在两个ORKTask(例如InformedConsent和SurveyTasks)之间创建segue。 Swift中没有太多有关如何执行此操作的文档?我想知道是否有人可以帮助我?
最佳答案
通常,您在ORKTask
中使用ORKTaskViewController
。用其关联的任务实例化控制器后,您可以选择任何方式programmatically present the controller。
例如:您可以使用presentViewController:animated:completion:
,或将其设为UITabBarController的子级,或将其推入UINavigationController
等。