Show touch and force-touch indicators for your iOS app. Have swift and obj-c versions
-
Copy and paste
DMZTouchesWindow.swiftto your project -
Use in your project:
let window = DMZTouchesWindow(frame: UIScreen.main.bounds);
window.dmz_touchesEnabled = true
...-
Copy and paste files
DMZTouchesWindow.h,DMZTouchesWindow.mto your project -
Use in your project:
DMZTouchesWindow *window = [[DMZTouchesWindow alloc] initWithFrame:UIScreen.mainScreen.bounds];
window.dmz_touchesEnabled = YES;
...