用 addOperationWithBlock 包装方法调用和用 addOperationWithBlock 包装整个方法实现有什么区别?
假设我有一个名为 foo 的方法。
有没有区别
- (void) foo{
[NSOperation mainQueue] addOperationWithBlock:^{
some code
}];
}
和
[NSOperation mainQueue] addOperationWithBlock:^{
[self foo];
}];