我有NSmutableArray
这样的人。
[OBJ1,OBJ2,OBJ3,obj5,......];
这已分配到UITableView
让我们说用户点击了第3个单元格。然后我需要像这样创建另一个NSMutableArray
。
[OBJ3,OBJ4,obj5,------];需要从数组中删除前几个对象到当前对象。我怎样才能做到这一点。 请帮我。 感谢
答案 0 :(得分:0)
您可以使用此...从任何可变数组中删除特定对象...
Concurrency note: attributes and parameters of a context are stored in
concurrent collections that guarantee thread safe access and modification.
If several threads concurrently access objects and modify these collections,
they should synchronize on the lock of the Context instance.