I have installed the newest Xcode 7.1 beta and trying to run my project on the iPad Pro Simulator. Everything is right and all of the features work correct.
But I have an issue with the screen size...
On the main screen of application I run the next log:
NSLog(@"%f", self.view.bounds.size.width);
I have 1024 for landscape orientation. But when I create a new application in Xcode 7.1 and run the same code on the main screen I get another value: 1366.
Today I plan to find diffs between project files created in old Xcode (6.4) and newest beta 7.1 using Araxis Merge.
Do you now how to fix this issue for the my old project?

If you hard code the frame of any UI elements due to some reasons, you may have to change it for upcoming iPad pro. Because, it has a different screen size (in points) altogether.
If you use auto layout and dynamic frames (e.g. self.view.bounds.size.width), it should just work fine I guess.