我在加载屏幕上插入了一个 UIActivityIndicator。当我将颜色更改为黑色时,它在 iOS 6.0 版本的设备上一切正常,但在旧版本的设备上崩溃。这是我的代码:
indicator = [[UIActivityIndicatorView alloc]initWithFrame:CGRectMake(110, 275, 30, 30)];
[indicator setColor:[UIColor blackColor]];//in this line i get crash.
[indicator startAnimating];
[self addSubview:indicator];
有人可以告诉我如何解决这个问题吗?
非常感谢,
埃拉德。