我正在尝试在两个ORKTasks之间创建一个segue,例如InformedConsent和SurveyTasks。 Swift中没有太多关于如何做到这一点的文档?我想知道是否有人可以帮助我?
答案 0 :(得分:0)
通常您在ORKTask
内使用ORKTaskViewController
。一旦您使用相关任务实例化控制器,您可以以任何方式选择programmatically present the controller。
例如:您可以使用presentViewController:animated:completion:
,或将其设为UITabBarController的孩子,或将其推送到UINavigationController
等。