标签: ios
APIElement *ap=[[APIElement alloc]init]; ap=[feeds objectAtIndex:[indexPath.row]];
上面是我的片段,其中我想将feed中的对象(NSMUTABALEARRAY)导入ap,这是APIElement的对象,但它给出了我的错误,如“预期的标识符”。
答案 0 :(得分:0)
您必须从indexPath.row中删除框。
ap=[feeds objectAtIndex:indexPath.row];