'NSInvocationOperation'在Xcode 6.1中不可用

时间:2014-10-30 03:17:20

标签: swift ios8 nsinvocationoperation

我的代码突然无法在Xcode 6.1中编译(我确信它在Xcode 6 GM和beta版本中工作)。它显示错误消息:

  

' NSInvocationOperation'不可用

我的代码是:

let operation = NSInvocationOperation(target:self, selector:"backgroundRun:", object:self)

有人可以帮忙吗?感谢。

1 个答案:

答案 0 :(得分:17)

自Xcode 6.1起,NSInvocation在Swift中被禁用,因此NSInvocationOperation也被禁用。见this thread in Developer Forum

  

因为它不是类型安全的或ARC安全的。即使在Objective-C中,也很容易在试图使用它的情况下拍摄自己,特别是在ARC下。改为使用闭包/块。

你必须在Swift中使用NSBlockOperation

addOperationWithBlockNSOperationQueue

queue.addOperationWithBlock { [weak self] in
    self?.backgroundRun(self)
    return
}