[问题] 关于取得元件问题

楼主: herbacin (herbacin)   2017-01-10 18:52:07
请问一下各位大大
假设我在ViewController 加入了两个 UITextView
var textView1 = UIView(frame: CGRect(x:0, y:0, width:100, height:100))
var textView2 = UIView(frame: CGRect(x:100, y:100, width:100, height:100))
textView1.delegate = self
textView2.delegate = self
self.view.addSubView(textView1)
self.view.addSubView(textView2)
func textViewDidBeginEditing(_ textView: UITextView) {
//问题 :请问这边要如何判断是 textView1在进行编辑
    还是 textView2在进行编辑呢?
}
麻烦各位非常感谢
作者: Esvent (Esvent)   2017-01-10 18:55:00
把两个textView作为成员变量存起来 跟参数比较
作者: darktt (小朱)   2017-01-10 18:56:00
if textView == self.textView1或是采用view的tag来辨识
楼主: herbacin (herbacin)   2017-01-10 19:04:00
非常感谢两位

Links booklink

Contact Us: admin [ a t ] ucptt.com