0
+ (UIColor*)hll_backgroundColorForIndex:(NSUInteger)index
{
index = index % [self hll_backgroundColors].count;
UIColor *color = [self hll_backgroundColors][index];

NSAssert(nil != color, @"nil color");
return color;
}

这是我在 [self hill backgroundColors][index] 处显示错误的代码

4

1 回答 1

0

数组是空的吗?用 记录它NSLog()。另外,我会[self hll_backgroundColors]在方法中放入一个数组变量,我不知道你是否在getter方法中做了一些魔术。

于 2013-10-26T16:17:43.983 回答