视图控制器中的快速错误"Use of undeclared type"



我正在开发一个使用 ResearchKit 和 Swift on Xcode 的应用程序。ResearchKit 软件相对简单,但视图控制器中的这段特定代码包含以下消息:

"使用未声明的类型">

对于所有三种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)
}
}

尝试在视图控制器中添加import ResearchKit,您正在调用与ResearchKit相关的东西。

import UIKit
import ResearchKit

相关内容

  • 没有找到相关文章

最新更新