TestsTested | ✗ |
LangLanguage | SwiftSwift |
License | MIT |
ReleasedLast Release | May 2015 |
SPMSupports SPM | ✗ |
Maintained by Naoki Morita.
When you give a presentation, your finger points are visible on screen.
Embedded frameworks require a minimum deployment target of iOS 8 To use MZRPresentationKit with a project targeting iOS 7, you must include the MZRPresentationKit.swift source file directly in your project.
CocoaPods 0.36 beta adds supports for Swift and embedded frameworks. You can install it with the following command:
$ gem install cocoapods --pre
To install it, simply add the following lines to your Podfile:
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
pod "MZRPresentationKit", '~>1.0.2'
import MZRPresentationKit
and just write the following line in the application(application:didFinishLaunchingWithOptions:)
in AppDelegate
.
MZRPresentationView.start()
You can change colors and images like this. You can set only color or image.
MZRPresentationView.start(UIColor.redColor(), image: UIImage(named: "YOUR-IMAGE"))
You can stop presentation from the app like this.
MZRPresentationView.stop()
Naoki Morita, [email protected], page
MZRPresentationKit is available under the MIT license. See the LICENSE file for more info.