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.
我正在为 iPad 编写测验,当用户在测验中按下主页按钮并重新启动应用程序时,我希望测验已经被取消并返回到应用程序的起始页。现在它只是回到它的最后一个视图。
我还希望它在应用程序重新启动时再次显示启动画面。
当按下主页按钮时,应用程序的完全重置会很棒。
提前致谢
那么,您想禁用多任务处理吗?
在您的 info.plist 中设置UIApplicationExitsOnSuspend= 。YES
UIApplicationExitsOnSuspend
YES
除非您只是希望它们通过屏幕恢复,在这种情况下,您需要查看 AppDelegate 的生命周期回调。
在项目的 plist 中选择“应用程序不在后台运行”选项。如果该选项不存在,请按侧面的“+”以添加该属性。
这将确保应用程序每次打开时都会重新启动。