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
Piya just check this below link :-
http://eureka.ykyuen.info/2010/04/12/iphone-disable-the-cutcopypaste-menu-on-uitextfield/
You can also check this code :-
- (BOOL)canPerformAction:(SEL)action withSender:(id)sender
{
if (action == @selector(paste:))
return NO;
return [super canPerformAction:action withSender:sender];
}