UIActivityIndi​​catorView 不会在 UIWebView 中显示

发布于 2024-12-26 04:10:40 字数 392 浏览 0 评论 0原文

我有一个 UIWebView,我想在页面加载时显示活动指示器。我已添加 UIWebViewDelegate 并在 .xib 文件中添加了指示器,但它仍然不显示。

-(void) webViewDidStartLoad:(UIWebView *)webView {
    [webView addSubview:loadingView];
    [webView bringSubviewToFront:loadingView];
    [loadingView startAnimating];
}

-(void) webViewDidFinishLoad:(UIWebView *)webView {
    [loadingView stopAnimating];
}

谁能帮助我吗?谢谢。

I have a UIWebView that i would like to show an activity indicator in while the page is loading. I have added the UIWebViewDelegate and added the indicator in the .xib file but it still doesnt show.

-(void) webViewDidStartLoad:(UIWebView *)webView {
    [webView addSubview:loadingView];
    [webView bringSubviewToFront:loadingView];
    [loadingView startAnimating];
}

-(void) webViewDidFinishLoad:(UIWebView *)webView {
    [loadingView stopAnimating];
}

Can anyone help me? Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

傲娇萝莉攻 2025-01-02 04:10:40

确保您的 loadingViewIBOutlet 已连接到界面构建器中的视图对象。

Make sure that your IBOutlet for loadingView is connected to the view object in the interface builder.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文