Do not highlight / initalise what you already have. That's why!
Usage example in cellForRowAtIndexPath
Using ClassName *class = [arrayOfSomething objectAtIndex:indexPath.row];
Instead of ClassName *class = [ClassName alloc] init]; class = [arrayOfSomething objectAtIndex:indexPath.row] ClassName *class = [ClassName alloc] init]; class = [arrayOfSomething objectAtIndex:indexPath.row]
Marc
source share