程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ios-objective-c UIAlert button不實現

ios-objective-c UIAlert button不實現

編輯:編程綜合問答
objective-c UIAlert button不實現

在函數中有一個UIAlert:

- (void)loadJSON
{

    Reachability *networkReachability = [Reachability reachabilityForInternetConnection];
    NetworkStatus networkStatus = [networkReachability currentReachabilityStatus];
    if (networkStatus == NotReachable) {
        dispatch_async(dispatch_get_main_queue(), ^{
            UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Announcement" message: @"No Connection" delegate: nil cancelButtonTitle:@"OK" otherButtonTitles:nil]; [alert show]; [alert release];
        });
    } else {
      //some code
    }
}

在用戶點了OK鍵後應該觸發函數,回調loadJSON 。

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex {
    [self loadJSON];
}

我的最終目標是如果沒有網絡連接,顯示UIAlert,用戶看見信息,點擊Okay,如果還沒有網絡連接,顯示警報。我沒有連上網,警報信息只顯示了一次。

最佳回答:


不要給alertView分配代理:

UIAlertView *alert = [[UIAlertView alloc] initWithTitle: @"Announcement" 
                                                message: @"No Connection" 
                                               delegate: self 
                                      cancelButtonTitle:@"OK" 
                                      otherButtonTitles:nil]; 
[alert show];
[alert release];
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved