gpt4 book ai didi

cocoa-touch - 将 UIActivityIndi​​cator 连接到 UIButton

转载 作者:行者123 更新时间:2023-12-01 08:42:18 25 4
gpt4 key购买 nike

所有这些 Xcode 的新东西 - 我有一些 UIButton 可以链接到我网站上的电影和音乐文件 - 它们工作正常,只是在加载 MoviePlayer 时有一些延迟时间,似乎什么都没有发生.

我想设置一个 UIActivityIndi​​cator - 我找不到简单的方法。

如果是这样,每个按钮都需要一个吗?

你能帮忙吗?谢谢卡尔

最佳答案

如果您想将 ActivityIndi​​cator 直接添加到您的按钮,这里有一些代码可以做到这一点:

UIButton *button = [UIButton buttonWithType:UIButtonTypeRoundedRect];
button.frame = CGRectMake(0,0,40,40); // increase width value if you want to add text
[button addTarget:self action:@selector(buttonPressed:) forControlEvents:UIControlEventTouchUpInside];
[button setImage:[UIImage imageNamed:@"location.png"] forState:UIControlStateNormal];

UIActivityIndicatorView *actIndicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle:UIActivityIndicatorViewStyleGray];
actIndicator.tag = 123456;
[actIndicator startAnimating];
actIndicator.frame = CGRectMake(7, 7, 26, 26);
[button addSubview:actIndicator];
[actIndicator release];

这显示了 Activity View ,但您可以在开始时将其隐藏或通过其标签访问指示器来切换 Activity 指示器。

关于cocoa-touch - 将 UIActivityIndi​​cator 连接到 UIButton,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1025650/

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