0
A
回答
0
展在alertview在應用程序委託類,在applicationDidFinishLaunching
:和applicationWillEnterForeground
:
0
@Rafeel把這個UIAlertView
在你的AppDelegate中的didFinishLaunchingWithOptions
方法,你總是會得到UIAlertView
當你啓動應用
UIAlertView *confirmAlertView=[[UIAlertView alloc]initWithTitle:@"Saved" message:@"Want to save!!" delegate:self cancelButtonTitle:@"OK" otherButtonTitles:@"Cancel",nil];
[confirmAlertView show];
[confirmAlertView release];
希望它能幫助你!
1
寫在以下的appDelegate方法警報statment,
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
UIAlertView *alert_View = [[[UIAlertView alloc] initWithTitle:@"Your Title" message:@"Your Message" delegate:self cancelButtonTitle:nil otherButtonTitles:@"YES",@"NO",nil] autorelease];
[alert_View show];
}
相關問題
- 1. UIAlertView,一旦用戶打開該應用程序。顯示一次
- 2. 3次後打開應用程序顯示uialertview?
- 3. 在打開phone.app之前顯示UIAlertView應用程序
- 4. 當應用程序未打開時顯示擡頭通知
- 5. 通知Android:當應用程序打開時不顯示通知?
- 6. 本地通知當應用程序打開時未顯示
- 7. modalViewController當應用程序打開時顯示
- 8. 當重新打開應用程序時警報不顯示
- 9. 當應用程序打開時不顯示FCM通知
- 10. 顯示UIAlertView中,當應用程序在前臺運行
- 11. 顯示一個UIAlertView中,當應用程序啓動
- 12. 當應用程序不應該打開時最大化應用程序打開
- 13. 除非重新打開應用程序,否則UIAlertView鍵盤不會顯示
- 14. 當頁面加載時打開全屏顯示的javascript函數
- 15. 當可摺疊塊打開時顯示加載動畫Jquery Mobile
- 16. 當用戶重新打開應用程序時加載片段android
- 17. 指示應用程序在哪個視圖上加載打開?
- 18. 僅在第一次啓動應用程序時顯示UIAlertView
- 19. 在應用程序關閉時顯示UIAlertView
- 20. 爲什麼在顯示UIAlertView時應用程序崩潰?
- 21. 在應用程序購買正在進行時顯示UIAlertView
- 22. 當應用程序已打開時打開深層鏈接
- 23. 當設備打開時打開android應用程序
- 24. 當應用程序打開時更新徽章而不提示
- 25. 當用戶離開iOS應用程序時顯示Uiview
- 26. 當iOS應用程序正在加載數據時顯示活動指示符?
- 27. 當退出並重新打開應用程序時,不顯示聊天消息
- 28. 如何在Android中加載應用程序時顯示圖像?
- 29. 如何在應用程序結束時打開顯示器?
- 30. iPhone應用程序顯示以前的狀態時打開