gpt4 book ai didi

iphone - 下载网络资源时显示加载图标

转载 作者:可可西里 更新时间:2023-11-01 03:08:23 25 4
gpt4 key购买 nike

我试图在我的 iPhone 应用程序下载网络资源时显示加载图标,但我不知道如何让它正确显示。

我四处搜索,发现了一些关于 UIActivityView 类的细节,但是可用的示例源代码不起作用,而且文档有点简洁。

谁能提供一个简单的例子来说明如何使用这个类?

最佳答案

假设您已经设置了一个 View Controller ,并且想要向其添加一个 UIActivityIndi​​cator,您可以按照以下方法进行操作:

(假设你有一个名为indicator的成员变量,稍后你可以用它来清理)

对于您的界面(.h 文件):

UIActivityIndicator *indicator;

对于您的实现(.m 文件):

开始动画

CGRect b = self.view.bounds;
indicator = [[UIActivityIndicator alloc] initWithActivityIndicatorStyle:
UIActivityIndicatorStyleWhite];
//center the indicator in the view
indicator.frame = CGRectMake((b.size.width - 20) / 2, (b.size.height - 20) / 2, 20, 20);
[self.view addSubview: indicator];
[indicator release];
[indicator startAnimating];

停止动画

[indicator removeFromSuperview];
indicator = nil;

关于iphone - 下载网络资源时显示加载图标,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/212215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com