读取未在类型对象上找到的数组元素的预期方法' NSArray *'

时间:2013-10-26 16:13:54

标签: xcode4.4

+ (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]

显示错误

1 个答案:

答案 0 :(得分:0)

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