+ (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]
显示错误答案 0 :(得分:0)
数组是否为空?使用NSLog()
进行记录。另外,我会将[self hll_backgroundColors]
放在方法中的数组变量中,我不知道你是否在getter方法中做了一些魔术。