Id like to use the system image chevron.right for my accessory icon and replace what is currently there so I can control the color. Right now with iOS 13+ the tint color is not updating like the text is, previous versions work. I need this done in objective c, not swift, using the system image sf symbol chevron.right.
- (void)modifyCell:(UITableViewCell*)tableCell andIndex:(NSIndexPath *)indexPath {
Event *event = [self findDataInRow:[self findRow:indexPath]];
if(event != nil)
{
EventsTableViewCell *eventTableCell = (EventsTableViewCell *)tableCell;
if(eventTableCell != nil)
{
}
}
You need to manipulate the color of the
accessoryViewof the dequeuedUITableViewCellwhen you return the cell in:So in a simple datasource implementation.
Pick your favoured system image instead of
"pencil.and.outline"which is just there to prove that it isn't the standard chevron. Observe that the LHS cell image takes the view tint oforangeand the accessory view on RHS takes any color that you wish.