Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
588 views
in Technique[技术] by (71.8m points)

ios - App thinks its running on 3.5 inch iPhone when it is on 4 inch

I am developing app for both 3.5 and 4 inch screens. However, suddenly on the simulator the screen size became 320 * 480 even when I am running 4-inch iPhone simulator.

I put this in AppDelegate file and it printed 320.000000, 480.000000...

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];

    NSLog(@"%f, %f", [[UIScreen mainScreen] bounds].size.width, [[UIScreen mainScreen] bounds].size.height);

    ...
}

I'm not sure which setting in Xcode (if any) that I accidentally touched that made it like this. All my .xib files are set to 4-inch retina. Does anyone came across this before?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

Please check that you have Default-h568 file in the project for iPhone 4inches.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...