这是我初始化 UIActivityAndicatorView 的代码:
self.indicator = [[UIActivityIndicatorView alloc] initWithActivityIndicatorStyle: UIActivityIndicatorViewStyleWhiteLarge];
self.indicator.color = [UIColor colorWithRed:252.0 green:113.0 blue:9.0 alpha:1.0];
self.indicator.center = self.view.center;
[self.view addSubview:self.indicator];
动画开始后 - 指示器出现在适当的位置,但颜色为白色。为什么忽略颜色属性?
Best Answer-推荐答案 strong>
这些值是介于 0 和 1 之间的 float 。试试这个:
self.indicator.color = [UIColor colorWithRed:252.0/255.0 green:113.0/255.0 blue:9.0/255.0 alpha:1.0];
关于ios - UIActivityIndicatorView 忽略颜色属性,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/34131469/
|