iphone - How to remove the tool tip in UISearchBar -
i still working on app , have question uisearchbar.
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
Post a Comment