2016-04-13 59 views
0

有沒有什麼辦法可以檢測發送給SafariViewController的url是否給出錯誤404(頁面未找到),然後提交給另一個默認url甚至解僱SafariViewController? 我現在使用這種方式,請客觀的c。如何檢測發送到SafariViewController的url是否給出了錯誤404

SFSafariViewController * sfSafariVC = [[SFSafariViewController alloc] initWithURL:url entersReaderIfAvailable:NO]; 

sfSafariVC.delegate = self; 

[self presentViewController:sfSafariVC animated:YES completion:nil]; 

回答

0

你可以在SFSafariViewControllerDelegate中實現「safariViewController:didCompleteInitialLoad:」。

+0

不幸的是,代表在這種情況下返回YES:http://openradar.appspot.com/33400536 –

相關問題