0
我在提交我的應用程序在App Store的過程,但我讀了,如果互聯網連接發生故障時,我的應用程序需要它,我必須通知用戶的委託方法。 Apple頁面也提到了可達性。目前,雖然,我使用UIWebView代理方法didFailLoadWithError ...UIWebView的錯誤VS可達
- (void)webView:(UIWebView *)webView didFailLoadWithError:(NSError *)error
{
UIAlertView *errorAlert = [[UIAlertView alloc] initWithTitle:@"Error Loading" message:[error localizedDescription] delegate:self cancelButtonTitle:@"OK" otherButtonTitles:nil, nil];
[errorAlert show];
}
...它工作正常。我的問題是,我的應用程序會因爲沒有使用Reachability來做到這一點而被拒絕,還是我現在正在做的事情沒有問題?
在此先感謝。
謝謝!很高興知道... – gtmtg
不客氣! –