I have 2 NSMutableArray
s. They are:
allStudentsMutableArr
selectedStudentsMutableArr
allStudentsMutableArr
contains all the Student
objects and it has around 100 objects saved in it. Whereas, selectedStudentsMutableArr
only contains 10 Student
records saved in it.
Now i need to compare the 2 MutableArrays and remove all objects from allStudentsMutableArr
that's present in selectedStudentsMutableArr
mutable array. How can i do this ?