Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/zoul/google-suggest-objective-c
- Owner: zoul
- Created: 2013-01-10T09:36:30.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-01-16T12:21:30.000Z (almost 12 years ago)
- Last Synced: 2023-04-19T04:16:33.274Z (over 1 year ago)
- Language: Objective-C
- Size: 121 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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.