Is there any method in iOS similar to Android's Search Suggestions? -


in android, application can suggest words sqlite match text entered far using contentprovider. similar google's autocomplete.

is there similar method in ios? i'm new ios programming , trying implement dictionary in app. in advance.

create bool variable in .m file.

bool issearching;  -(void)searchbar:(uisearchbar *)searchbar textdidchange:(nsstring *)searchtext  // method called evry time when edit text on search bar. {   issearching = yes; } 

Comments

Popular posts from this blog

hibernate - How to load global settings frequently used in application in Java -

python 3.x - Mapping specific letters onto a list of words -

objective c - Ownership modifiers with manual reference counting -