CocoaPods trunk is moving to be read-only. Read more on the blog, there are 18 months to go.

VisibleTouchViewSwift 0.1.1

VisibleTouchViewSwift 0.1.1

TestsTested
LangLanguage SwiftSwift
License MIT
ReleasedLast Release Oct 2017
SwiftSwift Version 3.0
SPMSupports SPM

Maintained by Benjamin Chrobot.



  • By
  • Benjamin Chrobot

VisibleTouchViewSwift



Show finger touches on the screen using either a UIView or UIWindow. Useful for app preview videos, live product demos, and more. Based on EUMTouchPointView.

Usage

Set VisibleTouchVWindow as your Root View Controller

@UIApplicationMain
class AppDelegate: UIResponder, UIApplicationDelegate {
    var window: UIWindow?
    var controller = Controller()
    
    override init() {
        super.init()
        self.window = VisibleTouchVWindow(frame: UIScreen.mainScreen().bounds)
    }

    func application(application: UIApplication, didFinishLaunchingWithOptions launchOptions: [NSObject: AnyObject]?) -> Bool {
        window!.rootViewController = Controller()
        window!.makeKeyAndVisible()
        return true
    }
}

Installation

VisibleTouchViewSwift is available through CocoaPods. To install it, simply add the following line to your Podfile:

pod 'VisibleTouchViewSwift'

Release History

See CHANGELOG.md

Author

Benjamin Chrobot (@bchrobot), [email protected]

License

VisibleTouchViewSwift is available under the MIT license. See LICENSE for more info.