Memory Management looks good on my app, left the layout and freed 30Mb.
[attachment=0:2h2oxqgx][/attachment:2h2oxqgx]
However I have an issue with the landscape orientation, when running through ejecta it always displays as portrait? Anyone else experiencing this?
-- Details --
In Construct 2; Orientations = Landscape
Setting xcode device orientation to "landscape left" or "landscape right" only, throws the exception:
"*** Terminating app due to uncaught exception 'UIApplicationInvalidInterfaceOrientation', reason: 'Supported orientations has no common orientation with the application, and shouldAutorotate is returning YES'"
As a temporary fix changing the code to the below which works:
- (NSUInteger)supportedInterfaceOrientations {
// Allow Landscape Left and Right
return UIInterfaceOrientationMaskLandscape;
}