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
Use this
@implementation UITextFiels (DisableCopyPaste) - (BOOL)canBecomeFirstResponder { return NO; } @end