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?