Possible Duplicate:
iOS5 Stable App Crashing in iOS4.3 Simulator
I have a UIViewController with a xib with a View and a UISwipeGestureRecognizer. When I run in an iOS 6 simulator everything works as intended.
When I run in an iOS 4.3 simulator and attempt to access the viewController.view which causes the xib to be loaded for the first time, then I get this error message:
-[UISwipeGestureRecognizer initWithCoder:]: unrecognized selector sent to instance 0x7385340
Switch back to iOS6, loads no problem. iOS 4.3, crash.
This is my IBOutlet definition for the gesture recognizer I'm creating in that xib:
@property (strong, nonatomic) IBOutlet UISwipeGestureRecognizer *gestureRecognizerSwipeClosed;