使用下面的代碼,我試圖表現出UIAlertView中,被正常顯示,也是我的應用程序是通過適當的去下一個畫面吧[自getlogin]方法。我面臨的問題是,當另一個視圖加載時alert視圖不會消失,因爲[self getLogin]被稱爲alert視圖時應該自行消失,並且應該顯示新的屏幕,而不是。iPhone應用程序自動登錄
另外我想補充警報視圖上方的進度條取消按鈕,我如何能做到這一點
if ((user != nil) && (passwd != nil)) {
NSLog(@"Data found");
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@"Signing in..." message:nil delegate:nil cancelButtonTitle:@"Cancel" otherButtonTitles:nil ];
[alert show];
[self getLogin];
}else {
NSLog(@"No data saved");
}
我使用的登錄屏幕上此警報來看,如果用戶名和密碼被保存那麼警報視圖將會出現並開始通過[self getLogin]自動登錄;而當它被記錄在警報視圖將消失,新的屏幕將顯示,如果同時在用戶點擊自動簽名取消按鈕,用戶將在登錄屏幕
我有這個解決方案...如何關閉這個問題? – 2012-01-13 09:58:45