阿里点播 iOS Failed to make complete framebuffer object 8cd6
                                                    其实这个是苹果的一个系统bug 想到了一个曲线救国的方法 在(BOOL)application:(UIApplication )application didFinishLaunchingWithOptions:(NSDictionary )launchOptions 方法中 这样设置rootview就能解决你的问题了rootVC = [[FirstViewController alloc]init];
UINavigationController *navvc = [[UINavigationController alloc]initWithRootViewController:_rootVC];
self.window.rootViewController = navvc;
[self.window makeKeyAndVisible];
                                                    
                                                        赞1
                                                        踩0