asafkorem / COSTouchVisualizer

Visualize touches, gestures and long presses on your iPhone or iPad
https://www.conopsys.com/COSTouchVisualizer/
MIT License
960 stars 70 forks source link

Touches not shown on iOS 7.1 iPhone simulator or iOS 7.1 iPhone or iPod Touch 5G #4

Closed RepublicOfAppsLLC closed 10 years ago

RepublicOfAppsLLC commented 10 years ago

Hey,

The animated gif looks awesome!

But running the Example project on both the iOS 7.1 simulator and an actual iOS 7.1 iPhone or iPod Touch 5G, I don't see the animated touch circles.

Any ideas why?

Thanks!

Joel

joeblau commented 10 years ago

The touches are only set to show up when you're using your phone via AirPlay. If you want the touches to show up so you can see them while debugging, you need to enable debug mode.

In this file: Pods/COSTouchVisualizerWindow/COSTouchVisualizerWindow.m Set values to 1

#ifdef TARGET_IPHONE_SIMULATOR
#define DEBUG_FINGERTIP_WINDOW 1
#else
#define DEBUG_FINGERTIP_WINDOW 1
#endif