In my UIViewController, I call -[UITableView reloadData] and inside my -[UITableViewDataSource tableView:cellForRowAtIndexPath:] method, I call -[UITableViewCell setHighlighted:] with YES. However, after I return from -[UITableViewDataSource tableView:cellForRowAtIndexPath:], the UITableView calls -[UITableViewCell setHighlighted:] with NO.

The -[UITableViewDataSource tableView:cellForRowAtIndexPath:] documentation says:

Various attributes of a table cell are set automatically based on whether the cell is a separator and on information the data source provides, such as for accessory views and editing controls.

Does the documentation cover this behavior, or is something else going on?

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.