Gecco is an efficient and effective light-weight library in Swift that simply highlights multiple items within your iOS app. This docset provides comprehensive documentation for developers and users interested in using the Gecco library.
Installation
The Gecco library can easily be integrated in to your iOS project using the CocoaPods dependency manager. To install using CocoaPods, add the following line to your Podfile.
pod 'Gecco'
Usage
Before you can use the Gecco library in your project, you must import it into your Swift file.
import Gecco
Examples
Here are some examples demonstrating how to use the Gecco library in your project.
- Show a simple spotlight:
let spotlight = Spotlight(radius: 150, center: CGPoint(x: 200, y: 200))
spotlightView.appear(spotlight)
- Change the spotlight to another:
let spotlight = Spotlight.Oval(frame: CGRect(x: 50, y: 50, width: 200, height: 500))
spotlightView.move(spotlight)
Notes
Gecco has been developed and optimized for Swift 4.2+, and iOS 8.0+. For earlier versions of Swift or iOS, you can check out earlier versions of the library.
Contact
If you have any issues or require further information, users are encouraged to contribute to the project by opening a Github issue.
License
Gecco library is released under the MIT License. See the bundled LICENSE file for more details.