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

Strange crash on iPhone 5 (iOS 6.1.2) #6

Closed capriele closed 10 years ago

capriele commented 10 years ago

Hi, when i launch the app from my device i get every times this error:

Apr 13 00:20:35 iPhone MyApp[1443] <Error>: +[UIView animateKeyframesWithDuration:delay:options:animations:completion:]: unrecognized selector sent to class 0x3b156a08
Apr 13 00:20:35 iPhone MyApp[1443] <Error>: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '+[UIView animateKeyframesWithDuration:delay:options:animations:completion:]: unrecognized selector sent to class 0x3b156a08'

P.S. in the iPhone Simulator this never heppen... Thanks for the work!! :D

joeblau commented 10 years ago

Good catch! I forgot to take into account iOS6 within xCode5 for the morphing animation. I changed the animation from animateKeyframesWithDuration to animateWithDuration in this commit ee5d0771ad70f5ba8005186824383e0d823b2970

The update will be in the public version of 1.0.2

capriele commented 10 years ago

Thanks!!