3

I hooked up touchUpInside as usual in IB, using new Xcode, build set to iOS 5.0, but my iPhone 4(latest iOS5 right before iOS6 came out) seems not to respond to that. Anybody having same issue?

EDIT:

Works on iOS6 simulator, not on real device...

Michal
  • 15,429
  • 10
  • 73
  • 104
  • I am getting same issue , http://stackoverflow.com/questions/22380304/uibutton-touchupinside-event-is-not-working-in-ios-5-0 – PJR Mar 13 '14 at 13:36

1 Answers1

3

Check for gesture recognizers in your code - Apple changed evaluation order of IBAction and Gesture Recognizer. In iOS6, IBAction is always performed first.

slezadav
  • 6,104
  • 7
  • 40
  • 61
  • i am getting same issue , how can i resolve this ? this is a link for my question http://stackoverflow.com/questions/22380304/uibutton-touchupinside-event-is-not-working-in-ios-5-0 – PJR Mar 13 '14 at 13:35