分配数组对象时出现预期的标识符错误

时间:2014-08-07 07:05:55

标签: ios

APIElement *ap=[[APIElement alloc]init];
ap=[feeds objectAtIndex:[indexPath.row]];

上面是我的片段,其中我想将feed中的对象(NSMUTABALEARRAY)导入ap,这是APIElement的对象,但它给出了我的错误,如“预期的标识符”。

1 个答案:

答案 0 :(得分:0)

您必须从indexPath.row中删除框。

ap=[feeds objectAtIndex:indexPath.row];