美文网首页
通知的使用

通知的使用

作者: b2a58867a9b2 | 来源:发表于2016-08-08 17:29 被阅读0次

    1.创建通知事件

    [[NSNotificationCenterdefaultCenter]addObserver:selfselector:@selector(textChange)name:UITextFieldTextDidChangeNotificationobject:self.accountField];

    2.销毁监听

    - (void)dealloc

    {  [[NSNotificationCenterdefaultCenter]removeObserver:self];   }

    监听事件处理

    - (void)textChange

    {            }

    相关文章

      网友评论

          本文标题:通知的使用

          本文链接:https://www.haomeiwen.com/subject/hwersttx.html