gpt4 book ai didi

swift - 我的类(class)没有成员属性

转载 作者:行者123 更新时间:2023-11-30 14:18:48 26 4
gpt4 key购买 nike

我的Xcode版本是6.3.2。我引用https://stackoverflow.com/a/25856755/685060 。我曾使用lazy,但告诉我我的类没有这个成员。我可以使用这个方法吗?或者我应该创建一个函数来返回 appDelegate 并且懒惰地调用它?感谢您的帮助。

class TableViewController: UITableViewController, DetailViewControllerProtocol {

let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
lazy var managedContext = self.appDelegate.managedObjectContext // This line
....

最佳答案

我不确定我是否理解您的问题,但请尝试以下代码:

lazy var managedContext:NSManagedObjectContext = { 
let appDelegate = UIApplication.sharedApplication().delegate as! AppDelegate
return appDelegate.managedObjectContext!
}()

希望能解决您的问题!

关于swift - 我的类(class)没有成员属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30771215/

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