ios - How to disable copy/paste option in UITextfield in ios7 -


i tried

@implementation uitextfield (disablecopypaste)  -(bool)canperformaction:(sel)action withsender:(id)sender {  return no; return [super canperformaction:action withsender:sender];  }  @end 

but disables textfield's copy/paste option,how disable menu options specific textfield.

i think method ok,since no making of category etc.it works fine me.

    [[nsoperationqueue mainqueue] addoperationwithblock:^{         [[uimenucontroller sharedmenucontroller] setmenuvisible:no animated:no];     }];     return [super canperformaction:action withsender:sender]; 

Comments

Popular posts from this blog

C# random value from dictionary and tuple -

cgi - How do I interpret URLs without extension as files rather than missing directories in nginx? -

.htaccess - htaccess convert request to clean url and add slash at the end of the url -