1
I have an app that runs perfectly on Xcode 5. For update effect, I installed Xcode 6 and ran the same app (without uninstalling Xcode 5). Then I found some problems, among them:
1) The app runs only in Landscape orientation. In Xcode 5 to take the width of the screen I use self.view.frame.size.height. In Xcode 6 I have to use self.view.frame.size.width.
2) The app uses Uisplitviewcontroller and there is a button that shows or hides the master view. However, in Xcode 6 with the hidden master view, if I touch the screen and drag the master view appears and the app runs incorrectly. In this case, I believe the problem may be caused by the method shouldHideViewController
which was deprecated in iOS8. However, the target in my app is 7.0.
Maybe they are very specific doubts, but someone can know these problems.
Last doubt, an app created in Xcode 5 can run on iOS8?
It will help a lot. Perfect! Thank you so much for your time.
– IamInTrouble