iOS NSArray removeObject & removeObiectIndex區別
removeObject 刪除數組中的對象
會刪除和array[0] 相等的對象
removeObject:array[0] 不等于 removeObiectIndex:0
removeObiectIndex 刪除數組中指定下標的對象
只會刪除第一個
NSArray 詳細用法參考博客
http://blog.csdn.net/qq_28865297/article/details/52220962