The UITableViewCell is usually drawn with the UITableViewDelegate or UITableViewDataSource protocol methods, like
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
But how would I change the cell outside of these methods? If I wanted to, for instance, turn a UITableViewCell's textLabel color to red using a button on the same screen, how would I refer to that cell and change it?