所以编译器告诉我 using[arrayName objectAtIndex:i]
是一个无效的表达式,但文档中的所有内容都告诉我我做得对。我很困惑。为什么不让我以这种方式访问数组?
-(IBAction)textWasEdited:(id)sender
{
int i = 0;
do
{
//do stuff
i++
} while([tipPercentages objectAtIndex:i] != Nil);
}
我看不出这段代码有什么问题!有点把我的头发拉在这里。