Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/geek1706/swift-google-autocomplete
Fetch google's autocomplete suggestions
https://github.com/geek1706/swift-google-autocomplete
carthage cocoapods google-autocomplete swift-3
Last synced: about 1 month ago
JSON representation
Fetch google's autocomplete suggestions
- Host: GitHub
- URL: https://github.com/geek1706/swift-google-autocomplete
- Owner: geek1706
- License: mit
- Created: 2016-10-03T04:26:33.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2019-03-29T14:20:46.000Z (over 5 years ago)
- Last Synced: 2024-10-01T16:50:14.285Z (about 2 months ago)
- Topics: carthage, cocoapods, google-autocomplete, swift-3
- Language: Swift
- Homepage: https://geek1706.github.io/swift-google-autocomplete/
- Size: 17.6 KB
- Stars: 3
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Google Autocomplete in Swift
Fetch google's autocomplete suggestions[![CI Status](https://travis-ci.org/geek1706/swift-google-autocomplete.svg?branch=master)](https://travis-ci.org/geek1706/swift-google-autocomplete)
[![Version](https://img.shields.io/cocoapods/v/swift-google-autocomplete.svg?style=flat)](http://cocoapods.org/pods/swift-google-autocomplete)
[![License](https://img.shields.io/cocoapods/l/swift-google-autocomplete.svg?style=flat)](http://cocoapods.org/pods/swift-google-autocomplete)
[![Platform](https://img.shields.io/cocoapods/p/swift-google-autocomplete.svg?style=flat)](http://cocoapods.org/pods/swift-google-autocomplete)
[![Carthage compatible](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)## Requirements
- Xcode 8+
- Swift 3.0+## Installation
### Cocoapods
```ruby
platform :ios, '8.0'
pod 'swift-google-autocomplete'
```
### Carthage
```
github "geek1706/swift-google-autocomplete"
```
## Usage
```swift
// Fetch google's autocomplete suggestions for a given seed term
AutoComplete.getQuerySuggestions("side to side") { results, error in
// Do something with suggestion results
}
```
## Author
Trung Nguyen, [email protected]
## License
MIT license.