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.
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
}
}
VisibleTouchViewSwift is available through CocoaPods. To install it, simply add the following line to your Podfile:
pod 'VisibleTouchViewSwift'
See CHANGELOG.md
Benjamin Chrobot (@bchrobot), [email protected]
VisibleTouchViewSwift is available under the MIT license. See LICENSE
for more info.