美文网首页
监控UITextField文字变化事件

监控UITextField文字变化事件

作者: 蓝色的雪啦 | 来源:发表于2016-12-19 17:29 被阅读44次
    [self.textFeild addTarget:self action:@selector(textChangeAction:)  forControlEvents:UIControlEventEditingChanged]; 
    
    - (void) textChangeAction:(id) sender
     {  
        NSLog(@"%@",_textFeild.text);  
    } 
    

    相关文章

      网友评论

          本文标题:监控UITextField文字变化事件

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