admin管理员组文章数量:1344170
Respected Madam/Sir,
The following code works well in the past year, but when I test it again on my iPhone which run iOS 16.7.8, a strange media player appeared and overlay the main screen of my app, I really don't know what happened there, I'm struggling to resolve it hours, but it still always appear, help please!
Any suggestion, direction, api misused, would be appreciated.
The app does not use storyboard, the code:
(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
UIWindow *window = [[UIWindow alloc] initWithFrame: [[UIScreen mainScreen] bounds]];
mainMenuViewController = [[MainMenuViewController alloc] init];
navigationController = [[UINavigationController alloc] initWithRootViewController: mainMenuViewController];
window.rootViewController = navigationController;
self.window = window;
[self.window makeKeyAndVisible];
return YES;
}
本文标签: iosStrange media player overlay iPhone main screenStack Overflow
版权声明:本文标题:ios - Strange media player overlay iPhone main screen - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743736578a2530122.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论