iOS文本禁掉系統(tǒng)自帶的復制,粘貼等功能
舉個例子 -- textView
1.textView.editable = YES;
2.textView的代理方法
-(BOOL)textViewShouldBeginEditing:(UITextView *)textView{
? ? ? return NO;
}
舉個例子 -- textView
1.textView.editable = YES;
2.textView的代理方法
-(BOOL)textViewShouldBeginEditing:(UITextView *)textView{
? ? ? return NO;
}