zoukankan      html  css  js  c++  java
  • NSNotificationCenter监听TextField文字变化

    注册

       1:  NSNotificationCenter.defaultCenter().addObserver(self, selector: "textDidChange", name: UITextFieldTextDidChangeNotification, object: nil)

    不要忘了移除:

       1:   deinit{
       2:          NSNotificationCenter.defaultCenter().removeObserver(self)
       3:      }
  • 相关阅读:
    阿狸的打字机(bzoj 2434)
    Censoring(bzoj 3940)
    文本生成器(bzoj 1030)
    病毒(bzoj 2938)
    Road(bzoj 2750)
    codevs 2370 小机房的树
    HDU 2838 Cow Sorting
    luogu P2253 好一个一中腰鼓!
    hdu 1166 敌兵布阵
    luogu P1901 发射站
  • 原文地址:https://www.cnblogs.com/zeyang/p/4493805.html
Copyright © 2011-2022 走看看