Touchpose
Touchpose copied to clipboard
Touchposé is a set of classes for iOS that renders screen touches when a device is connected to a mirrored display.
I'm working on a demo app where I want the user to be able to enable/disable Touchpose. To enable/disable Touchpose I call ``` ((QTouchposeApplication *)[UIApplication sharedApplication]).alwaysShowTouches = isShowingTaps; ((QTouchposeApplication *)[UIApplication...
This was reported in a [comment](url) by @gatamar for #16, but I think it’s a separate bug. The issue is with line 85: https://github.com/toddreed/Touchpose/blob/dd2b7293ec5cf052dc16594cc1f8ecd56a1e328d/Pod/Source/TRTouchposeApplication.m#L80-L86 which would attempt to retain an...
main.swift doesn't work on Xcode 8.2 (on January 19, 2017), unless I change to this: UIApplicationMain(CommandLine.argc, UnsafeMutableRawPointer(CommandLine.unsafeArgv) .bindMemory(to: UnsafeMutablePointer.self, capacity: Int(CommandLine.argc)), NSStringFromClass(QTouchposeApplication.self), NSStringFromClass(AppDelegate.self)) Also, the instructions would be better if...
Working with iOS 10, Xcode 8 on Swift 2.3.
Hi, We stumbled across your lib and integrated it into one of our apps. Unfortunately we had to deal with a few bugs (e.g. Touchpose not being displayed correctly on...
when following the readme, we get the error "Use of undeclared identifier 'QAppDelegate'". it's working by simply don't using it in main.m : return UIApplicationMain(argc, argv, NSStringFromClass([QTouchposeApplication class]), NSStringFromClass([BBAppDelegate class]));...
### Summary Improve README file to support the Cocoapods Installation ### Why Right now is not clear that is possible to import Touchposé through cocoapods, the only way to know...