https://github.com/xai3/Minamo
Simple coach mark library written in Swift
https://github.com/xai3/Minamo
Last synced: 6 months ago
JSON representation
Simple coach mark library written in Swift
- Host: GitHub
- URL: https://github.com/xai3/Minamo
- Owner: xai3
- License: mit
- Created: 2016-01-21T15:12:19.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2019-02-23T08:40:12.000Z (about 6 years ago)
- Last Synced: 2024-04-14T17:25:06.074Z (about 1 year ago)
- Language: Swift
- Homepage:
- Size: 45.9 KB
- Stars: 247
- Watchers: 13
- Forks: 18
- Open Issues: 6
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-ios - Minamo - Simple coach mark library written in Swift. (Walkthrough / Intro / Tutorial / Web View)
README
# Minamo
[](http://cocoadocs.org/docsets/Minamo/)
[](http://cocoadocs.org/docsets/Minamo/)
[](http://opensource.org/licenses/MIT)Simple coach mark library written in Swift

## Usage
#### Initialize
``` swift
let rippeleView = RippleView()
rippeleView.tintColor = UIColor(red: 0.3, green: 0.7, blue: 1, alpha: 1)
rippeleView.coreImage = UIImage(named: "q")
```#### Appear at the UIView
``` swift
rippeleView.appearAtView(someView)
```#### Appear at the UIBarButtonItem
``` swift
if let buttonItem = navigationItem.rightBarButtonItems?.first {
rippeleView.appearAtBarButtonItem(buttonItem, offset: CGPointMake(-10, 10))
}
```#### Dismiss
``` swift
rippleView.disappear()
```## Properties
`RippleView` has some properties.
* duration
* coreImage
* coreHidden
* ringScale
* ringWidth
* ringHidden
* contentInset## Installation
#### CocoaPods
```
pod 'Minamo'
```## License
Minamo is released under the MIT license. See LICENSE for details.