0
我可以使用使用textViewShouldBeginEditing不止一次
-(BOOL)textViewShouldBeginEditing:(UITextView *)firstTextView {
return NO;
}
從通過鍵盤進行編輯停止textView
。
但是,如果我嘗試使用其他
-(BOOL)textViewShouldBeginEditing:(UITextView *)secondTextView {
return NO;
}
我得到一個錯誤的textViewShouldBeginEditing
的重新定義。
我相信這是我使用委託方法做的傻事。