NSMutableArray*testArray=[NSMutableArrayarray];[testArrayaddObject:@"1"];[testArrayaddObject:@"2"];[testArrayaddObject:@"3"];NSLog(@"添加了123%@",testArray);[testArrayinsertObject:@"4"atIndex:0];NSLog(@"最前面插入了4%@",testArray);[testArrayremoveObject...
查看全文