您好,我是在iphone的研究與開發初學者。我正在爲iphone4兼容iPhone應用程序。 我正在顯示一個警報視圖,並選擇一個是導航到brouwser.its確定,但我的應用程序將在background.but我希望它終止和shuld重新啓動時單擊應用程序圖標。
if (alertView.tag==222) {
if (buttonIndex==0) {
[[UIApplication sharedApplication] openURL: [NSURL URLWithString:@"http://itunes.apple.com/"]];
}
}
當我點擊主頁按鈕時,它也正在走向bground。 我想要應用程序應該從後臺終止也。
exit()怎麼樣? –
@Daniel你不應該叫退出。 – rckoenes
其他可能的重複:http://stackoverflow.com/questions/3227736/iphone-avoid-save-state,http://stackoverflow.com/questions/5565730/iphone-app-startup,http://stackoverflow.com/questions/6127560/how-do-i-tell-ios-that-i-do-not-the-app-to-stay-in-the-the-the-background,http://stackoverflow.com/questions/4437619/make-app-without-multitasking-support,http://stackoverflow.com/questions/6516519/how-to-restart-a-application-without-going-to-recent-worked-page-when-we退出 – Codo