我正在将我的应用程序提交到 App Store,但我读到如果我的应用程序需要它时互联网连接中断,我必须通知用户。苹果页面也提到了可达性。不过,目前我正在使用 UIWebView 委托方法 didFailLoadWithError ...
- (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 来执行此操作而被拒绝,或者我目前正在做的事情是否可以?
提前致谢。