I have an app that use auto layout, programmatically setting constraints.
While it work fine on iOS 9, it suddenly crash almost everywhere on iOS 7.
For example, it crashes on method:
[cell updateConstraintsIfNeeded];
Then, in another place it crash on:
return UIApplicationMain(argc, argv, nil, NSStringFromClass([AppDelegate class]));
In console output is:
Break on objc_exception_throw to catch this in the debugger.
The methods in the UIConstraintBasedLayoutDebugging category on UIView listed in <UIKit/UIView.h> may also be helpful.
Is anyone ever face same problem when launch iOS 9 auto layout app on iOS 7 device?