Tag: Swiftios9

ios 9 objective-c屏幕尺寸问题

我升级到ios 9和xcode 7(来自xcode 6.2),现在,当我启动我的应用程序时,会发生这种情况: 现在上面和下面都有这些黑条。 我的appDelegate是这样的: – (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]]; // Override point for customization after application launch. // self.window.backgroundColor = [UIColor whiteColor]; // [self.window makeKeyAndVisible]; _startViewController = [[StartViewController alloc] init]; _startNavigationController = [[StartNavigationController alloc] initWithRootViewController:_startViewController]; self.window.rootViewController = _startNavigationController; [self.window makeKeyAndVisible]; // Need to fix this […]