美文网首页
TextField神秘操作

TextField神秘操作

作者: LS_Dev | 来源:发表于2020-05-19 16:57 被阅读0次

    // 禁用菜单

    - (BOOL)canPerformAction:(SEL)action withSender:(id)sender{

        if(action ==@selector(paste:))//禁止粘贴

            returnNO;

        if(action ==@selector(select:))// 禁止选择

            returnNO;

        if(action ==@selector(selectAll:))// 禁止全选

            returnNO;

        return[super canPerformAction:action withSender:sender];

    }

    截图为:

    禁止操作

    相关文章

      网友评论

          本文标题:TextField神秘操作

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