如何从可变数组中删除具有重复字段值的项目
一个可变数组,填充了具有 3 个字段(班级编号、课程和开始)的表中的项目。我只想保留其中一个具有相同类别编号的项目,比如说在一种情况下,有 3 个具有相同类别编号的对象。 删除这两个项目中的任何一个的最佳方法是什么?
A mutablearray populated with items from a table with 3 fields (class number, lessons and started). I want to keep only one of the items with the same class number, say in one case, there are 3 objects with same class number.
What is the best way to remove any of the two items.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你可以很容易地用谷歌搜索它。让我为你做吧。
请参阅以下示例:
从 NSMutable 中删除重复值
第二个示例
删除重复项NSMutableArray
You can easily google it. Let me do it for you.
See the following example :
Removing duplicate values from NSMutable
Second example
Remove Duplicates in NSMutableArray