ResearchKit 取消按钮不起作用

ResearchKit Cancel button not working

我正在使用 ResearchKit 进行项目 (Swift),但我的取消栏按钮不起作用。 我发现以下方法应该可以正常工作

- (void)setCancelButtonItem:(UIBarButtonItem *)cancelButtonItem {
    [super setCancelButtonItem:cancelButtonItem];
    [cancelButtonItem setTarget:self];
    [cancelButtonItem setAction:@selector(cancelButtonHandler:)];
}
- (void)cancelButtonHandler:(id)sender {
    STRONGTYPE(self.taskViewController.delegate) strongDelegate = self.taskViewController.delegate;
    if ([strongDelegate respondsToSelector:@selector(taskViewController:didFinishWithReason:error:)]) {
        [strongDelegate taskViewController:self.taskViewController didFinishWithReason:ORKTaskViewControllerFinishReasonDiscarded error:nil];
    }
}

我收到“放弃结果”和“取消”弹出窗口,但是当我点击“放弃结果”选项时没有任何反应。

我应该检查其他东西吗?我应该把它连接到某个地方吗?

单击该按钮应该会调用 任务视图控制器委托 中的 taskViewController(taskViewController: ORKTaskViewController, didFinishWithReason reason: ORKTaskViewControllerFinishReason, error: NSError?) 方法。您必须在那里手动关闭 任务视图控制器

例如,参见 ORKCatalogTaskListViewController.swift:

中的实现
func taskViewController(taskViewController: ORKTaskViewController, didFinishWithReason reason: ORKTaskViewControllerFinishReason, error: NSError?) {
    /*
        The `reason` passed to this method indicates why the task view
        controller finished: Did the user cancel, save, or actually complete
        the task; or was there an error?

        The actual result of the task is on the `result` property of the task
        view controller.
    */
    taskResultFinishedCompletionHandler?(taskViewController.result)

    taskViewController.dismissViewControllerAnimated(true, completion: nil)
}