How will I be able to remove [NSNull Null] objects from NSMutableArray?

You can use NSMutableArray‘s removeObjectIdenticalTo: method, as follows

[mutArrSkills removeObjectIdenticalTo:[NSNull null]];

to remove the null values. No need to iterate.

Leave a Comment