Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用 UIApplication 的 openURL: 方法在 Safari 中打开网站。当用户回到应用程序(快速切换)时,它会重新启动。这意味着我的应用程序已退出而不是进入后台。
有没有人有同样的问题?有任何想法吗?先感谢您。
您可能需要保留 URL 对象。这曾经是我的问题
确保您正在使用
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
在你的 appdelegate 而不是
- (void)applicationDidFinishLaunching:(UIApplication *)application