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

database - VFP Grid + SQL server 2008 - grid not showing correctly -

jquery - Set jPicker field to empty value -

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