objective-c - 如何观察 NSOperationQueue 的 "operations"属性?
<p><p>我希望在我的 NSOperationQueue 中添加或删除 NSOperation 时收到通知。我正在尝试为“操作”属性(当前在队列中的 NSOperations 数组)设置键值观察,但它没有被触发。我的语法有问题吗?</p>
<pre><code>@implementation myOperationQueueSubclass
-(id)init
{
if (self = )
{
// Initialization code here
[self addObserver:self
forKeyPath:@"operations"
options:0
context:nil];
}
return self;
}
- (void)observeValueForKeyPath:(NSString *)keyPath
ofObject:(id)object
change:(NSDictionary *)change
context:(void *)context {
NSLog(@"queue changed...");
if () {
if (self.operationCount == 0) {
// No ops
} else {
// Has ops
}
}
}
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>您的语法没有任何问题,但是您观察的是数组属性,而不是数组本身(无论如何,当它发生突变时它不会发出 KVO 通知)。 </p>
<p>如果它由于某种原因被重新分配,您会收到通知,但 <code>NSOperationQueue</code> 将不得不费心手动发出通知,或使用 <a href="http://developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/KeyValueCoding/Articles/Compliant.html%23//apple_ref/doc/uid/20002172" rel="noreferrer noopener nofollow">KVC accessors</a> , 以允许其他人查看何时将对象添加到其<code>操作</code>中或从中删除。</p></p>
<p style="font-size: 20px;">关于objective-c - 如何观察 NSOperationQueue 的"operations"属性?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/11943883/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/11943883/
</a>
</p>
页:
[1]