iphone - How to remove the tool tip in UISearchBar -


i still working on app , have question uisearchbar.enter image description here here question: how can rid of "select|select all| paste" tool tip appearing in uisearchbar? can 1 me this? thank in advance.

starting ios 7, can subclass uisearchbar , override method this:

- (bool)canperformaction:(sel)action withsender:(id)sender {     [[nsoperationqueue mainqueue] addoperationwithblock:^{         [[uimenucontroller sharedmenucontroller] setmenuvisible:no animated:no];     }];     return [super canperformaction:action withsender:sender]; } 

this hide menu controller , doesn't require parse uisearchbar subviews.


Comments

Popular posts from this blog

matlab - Deleting rows with specific rules -

php - MySQLi multi_query results for later use -