0

有没有办法检测发送到 SafariViewController 的 url 是否给出错误 404(找不到页面)然后提交到另一个默认 url 甚至关闭 SafariViewController?我现在正在使用这种方式,请objetive-c。

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

sfSafariVC.delegate = self;

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

1 回答 1

0

您可以在 SFSafariViewControllerDelegate 中实现“safariViewController: didCompleteInitialLoad:”。

于 2017-02-13T03:31:22.807 回答