检测UILabel文本中的更改

时间:2013-01-14 21:00:55

标签: ios xcode uilabel nsnotificationcenter

是否可以为UILabel的文本属性更改时设置通知?当我找不到UILabel时,我尝试了用于UITextFields的那个,但它没有用。

 [[NSNotificationCenter defaultCenter]
 addObserver:self
 selector:@selector(posttosocial)
 name:UITextFieldTextDidChangeNotification
 object:nowplaying];

2 个答案:

答案 0 :(得分:21)

您可以使用键值观察(KVO):

[label addObserver:self
        forKeyPath:@"text"
           options:NSKeyValueObservingOptionNew
                 | NSKeyValueObservingOptionOld
           context:NULL];

- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object change:(NSDictionary *)change context:(void *)context
{
    if ([keyPath isEqualToString:@"text"]) {
        /* etc. */
    }
}

答案 1 :(得分:0)

对于Swift 3.2 +

let observation = label.observe(\UILabel.text, options: [.new, .old]) { label, change in
        print("\(change.newValue as? String ?? "" )")
    }

观察完成后致电observation.invalidate()