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 use NSMutableArray's removeObjectIdenticalTo: method, as follows
removeObjectIdenticalTo:
[mutArrSkills removeObjectIdenticalTo:[NSNull null]];
to remove the null values. No need to iterate.