How to disable paste option in menucontroller in iOS?

前端 未结 4 1158
一生所求
一生所求 2021-01-29 00:53

I have to disable Paste option when user long press on UITextField.I have got this code but still it is not hiding Paste option.

-(BOOL)canPerformAction:(SEL)act         


        
4条回答
  •  时光说笑
    2021-01-29 01:28

    Use this

    @implementation UITextFiels (DisableCopyPaste)
    
    - (BOOL)canBecomeFirstResponder
    {
        return NO;
    }
    
    @end
    

提交回复
热议问题