I need to remove Null object added by
[mutArrSkills addObject:[NSNull null]];
Do I need to iterate? Is there any function to remove all nu
You can try doing this,
NSNull *nullValue = [NSNull null]; [mutArrSkills removeObjectIdenticalTo:nullValue];
I hope this helps.