Sometimes Being Lazy is Good
I have seen code like this in some projects: [myArray removeAllObjects]; for (Thing *thing in anotherArray) { [myArray addObject:thing]; } [self.myTable reloadData]; Now, you may look at this and think it’s is a fine way of coding and you’d be right for the most part.…