UITextView禁止长按弹出【复制 粘贴 放大】的框框
textView.delegate = self;
textView.editable = YES;
然后写代理中的这个方法
- (BOOL)textViewShouldBeginEditing:(UITextView *)textView {
return NO;
}
注意:textView.editable一定要设置成YES
UITextView禁止长按弹出【复制 粘贴 放大】的框框
textView.delegate = self;
textView.editable = YES;
然后写代理中的这个方法
- (BOOL)textViewShouldBeginEditing:(UITextView *)textView {
return NO;
}
注意:textView.editable一定要设置成YES
本文标题:UITextView 禁止长按复制share等
本文链接:https://www.haomeiwen.com/subject/majzirtx.html
网友评论