I have a situation when i need [tableView dequeueReusableCellWithIdentifier:CellIdentifier] to return nil (because of reload).
I have called removeAllObjects on my NSMutableArray that holds data for my tableView.
What other datastructure must I clear to achieve my goal (or any other call on tableView)?
Thanks
Can you elaborate why you have such a requirement? Even if you want to reload the UI content of a cell(s), you don’t explicitly want
tableView dequeueReusableCellWithIdentifier:to return nil. You can always customize theUITableViewCellthat it returns.