Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/zoul/google-suggest-objective-c

An Objective-C library for reading Google Suggest results
https://github.com/zoul/google-suggest-objective-c

Last synced: 10 days ago
JSON representation

An Objective-C library for reading Google Suggest results

Awesome Lists containing this project

README

        

This is a simple library for interfacing with the Google Suggest service. You supply a search term, you get a list of suggested terms along with their popularity back:

[CCGoogleSuggest suggestionsForQuery:query completion:^(NSArray *results, NSError *error) {
for (CCGoogleSuggestResult *result in results) {
NSLog(@"%@: %@", [result query], [result score]);
}
}];

See the demo project for details. Suggestions welcome.