美文网首页
swift3.0使用ReactiveCocoa做textView

swift3.0使用ReactiveCocoa做textView

作者: xcmy | 来源:发表于2016-12-08 19:01 被阅读0次

    首先导入ReactiveCocoa

    let textView = UITextView()
    let placeHolder = UILabel()
    _ =  textView.reactive.continuousTextValues.observeResult(
    { (result) in
         if ((textView.text.characters.count) > 0) {
              placeHolder.isHidden = true
            }else
            {
              placeHolder.isHidden = false
            }
     })
    

    相比于之前设置代理来实现方便的多

    相关文章

      网友评论

          本文标题:swift3.0使用ReactiveCocoa做textView

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