I am trying to compare two mutable arrays having my model objects. In one array I am creating the model objects as-is, where as in the other array I am creating a copy of the original object using copyWithZone
(My models are subclass of NSObject
). However when I compare, It is always failing even though I did not change anything.
I printed both the arrays just to check and both seem to have the same objects.
Will isEqualToArray
not work on copied items?
Can someone point out where I am going wrong? Or if there is any other way to do this comparison?
I suggest for you to override the isEqual: method on both NSObject subclasses in a format similar to the example below.
Assume there is object of class Object and Compared Object. Both contain properties called propA (nsnumber) and propB (nsstring). This will work even if the two objects are of the same subclass.
Then, you can simply iterate through the contents of the arrays and check each object in the example method shown below.