全部,
我已经创建了一个像这样关闭的方法,
extension NSManagedObject{
class func performOnWorkerContext(_ blockescaping (_ context:NSManagedObjectContext?) -> ()){
//Create context, Call block() and save context
}
}
我像这样使用这种方法,('Request' 是 NSManagedObject 类型)。类方法将修改为:
extension NSManagedObject{
class func performOnWorkerContext(_ block: @escaping () ->()) {
//Create context, Call block() and save context
}
}
Request.performAndWaitOnWorkerContext { context in
//Use the 'context' here
}
现在,我的问题是如何使用这种方法,
Request.performAndWaitOnWorkerContext {
//Use 'context' here
}
这里我想使用变量'context'(我不知道怎么用,这是个问题)。当我们在 swift 中使用 setter 时,我已经看到了类似的实现
例如。如果我使用
var temp: Int {
set {
print(newValue) // Here 'newValue' is automatically available
}
get {}
}
我想实现这样的东西,请建议它是否可行或如何快速设置?
这背后的动机是它看起来更优雅,我们不必记住在这个闭包中可以访问的明显变量。
Best Answer-推荐答案 strong>
newValue 是 setter 中参数的默认名称
一个计算属性,willSet 属性观察者,和
下标方法的 setter 。它内置在语言中。
在闭包中,您可以命名参数
Request.performAndWaitOnWorkerContext { context in
// Use `context` here
}
或使用简写参数名称:
Request.performAndWaitOnWorkerContext {
// Use `$0` here
}
但您不能定义隐式参数名称。
关于ios - 如何在swift 3中创建像newValue(在setter中使用)这样的变量,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/49645344/
|