gpt4 book ai didi

ios - ViewController 中的 Swift 错误 "Use of undeclared type"

转载 作者:可可西里 更新时间:2023-11-01 01:57:30 25 4
gpt4 key购买 nike

我正在开发一款在 Xcode 上使用 ResearchKit 和 Swift 的应用程序。 ResearchKit 软件相对简单,但 View Controller 中的这段代码有以下信息:

"Use of undeclared type"

对于所有三种 ORKTaskViewControllerXXX 类型,我不确定如何修复它。这是我的代码:

import UIKit

class ViewController: UIViewController {
@IBAction func consentTapped(sender : AnyObject) {
let ORKTaskViewController = taskViewController(task: consentTapped, taskRunUUID: nil)
taskViewController.delegate = self
presentViewController(taskViewController, animated: true, completion: nil)
}
}

extension ViewController : ORKTaskViewControllerDelegate {
func taskViewController(taskViewController: ORKTaskViewController, didFinishWithReason reason: ORKTaskViewControllerFinishReason, error: NSError?) {
//Handle results with taskViewController.result
taskViewController.dismissViewControllerAnimated(true, completion: nil)
}
}

最佳答案

尝试在您调用ResearchKit 相关内容的 View Controller 中添加import ResearchKit

import UIKit
import ResearchKit

关于ios - ViewController 中的 Swift 错误 "Use of undeclared type",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50725270/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com