NSMutableArray *testArray =
[NSMutableArray array];
[testArray addObject:@"1"];
[testArray addObject:@"2"];
[testArray addObject:@"3"];
NSLog(@"添加了 1 2 3 %@",testArray);
[testArray insertObject:@"4" atIndex:
0];
NSLog(@"最前面插入了4 %@",testArray);
[testArray removeObject:@"1"];
NSLog(@"删除了1 %@",testArray);
[testArray removeObject:@"0"];
NSLog(@"删除了0 (一个不存在的元素) %@",testArray);
添加了 1 2 3 (
1,
2,
3
)
最前面插入了4 (
4,
1,
2,
3
)
删除了1 (
4,
2,
3
)
删除了0 (一个不存在的元素) (
4,
2,
3
)
转载请注明原文地址: https://mac.8miu.com/read-498195.html