我用來顯示一個啓動畫面,在後臺從網絡加載一些數據,我也檢查,如果用戶的位置從一個城市改變到另一個城市,我想顯示在警報用戶與你現在在「CityName」中的消息,你想看到這個城市的數據?在啓動畫面上顯示UIAlertView
我有選項卡式應用程序,我已經在應用程序委託類中提供瞭如下的啓動畫面。
SplashViewController *controller = [[SplashViewController alloc] initWithNibName:nil bundle:nil];
tabBarController.view.frame = [[UIScreen mainScreen] bounds];
controller.tabBarController = self.tabBarController;
[application setStatusBarStyle:UIStatusBarStyleBlackOpaque];
[window addSubview:controller.view ];
//[window addSubview:tabBarController.view ];
[self.tabBarController presentModalViewController:controller animated:YES];
[window makeKeyAndVisible];
[controller release];
現在,當我顯示警報屏幕會崩潰與「EXC_BAD_ACCESS」消息和堆棧跟蹤顯示,_buttonClick在UIAlertView中類發佈的應用程序。
請告訴我該怎麼做,我也嘗試過使用UIActionSheet,但也有與此相同的問題。
我認爲目前的視圖模型(SplashView)存在一些問題。
在此先感謝。
難道我的策略是錯誤的?我不應該在啓動畫面上識別用戶的位置並從網頁獲取數據? – 2010-07-19 21:26:21