美文网首页
iOS文本禁掉系统自带的复制,粘贴等功能

iOS文本禁掉系统自带的复制,粘贴等功能

作者: CTBOY | 来源:发表于2016-07-12 09:55 被阅读0次

    iOS文本禁掉系统自带的复制,粘贴等功能

    举个例子 -- textView


    1.textView.editable = YES;

    2.textView的代理方法

    -(BOOL)textViewShouldBeginEditing:(UITextView *)textView{

          return NO;

    }

    相关文章

      网友评论

          本文标题:iOS文本禁掉系统自带的复制,粘贴等功能

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