这是我用于初始化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];

动画开始后-指示器会出现在适当的位置,但带有白色。为什么颜色属性被忽略?

最佳答案

值在0到1之间浮动。请尝试以下操作:

    self.indicator.color = [UIColor colorWithRed:252.0/255.0 green:113.0/255.0 blue:9.0/255.0 alpha:1.0];

关于ios - UIActivityIndi​​catorView忽略颜色属性,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/34131469/

10-09 02:40