1
我想了解iOS從何處獲取應用切換器的圖像。爲了控制App Switcher上出現的內容,我需要更改哪些內容?爲什麼我的應用在App Switcher中顯示爲空白屏幕?
現在,我可以設置didFinishLaunchingWithOptions的第一行設置一個斷點,我推出的屏幕是可見的,但應用程序切換顯示只是一個空白屏幕只用綠色電池矩形。應用程序切換器似乎在我的應用程序中稍後還沒有選取任何圖像。
我這樣做是在didFinishLaunchingWithOptions:(後建立相應的視圖)
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
在一個名爲方法
後來這樣的:
MMDrawerController * drawerController = [[MMDrawerController alloc]
initWithCenterViewController:centerView
leftDrawerViewController:leftDrawer];
drawerController.maximumLeftDrawerWidth = LeftDrawerWidth;
drawerController.closeDrawerGestureModeMask = MMCloseDrawerGestureModeTapCenterView;
[imageView addSubview:[self staticToolbar]];
[imageView addSubview:[self dsaToolbar]];
self.window.rootViewController = drawerController;
[self.window makeKeyAndVisible];
[[UIApplication sharedApplication] setStatusBarHidden:NO];
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];
我也面臨同樣的問題你如何解決 – guru