0
我想在索引0如何修改NSArray對象中的值?
修改NSArray的值下面是示例程序
NSArray *test = @[@"abc",@"rec",@"myPM"];
NSLog (@"%@",[test objectAtIndex:0]);
test[0][email protected]"001";
NSLog (@"%@",[test objectAtIndex:0]);
在這裏我得到很多的錯誤。請幫助我。
嗨,我有修改的程序類似的NSMutableArray *測試= @ @ 「ABC」,@ 「REC」,@「myPM 「]; NSLog(@「%@」,[test objectAtIndex:0]); [test replaceObjectAtIndex:0 withObject:@「001」]; NSLog(@「%@」,[test objectAtIndex:0]);但仍然在程序中出現錯誤,如逗號'@',逗號表達式的左側操作數沒有任何作用 – user3041176
試試這個: NSMutableArray * test = [NSMutableArray arrayWithObjects:@「abc」,@「rec」,@「myPM」 ,無]; NSLog(@「%@」,[test objectAtIndex:0]); [test replaceObjectAtIndex:0 withObject:@「001」]; NSLog(@「%@」,[test objectAtIndex:0]); – Pipiks