I've got a UITableView with custom UITableCells. Inside those UITableCells are UISegmentedControls. I'm trying to change the tint color of just the first UISegment. This works correctly until the UITableCell is reused through dequeueReusableCellWithIdentifier. When reused UITableCells begin to appear when scrolling down, the last segment is tinted blue rather than the first. Here is the relevant code in cellforRowAtIndexPath:
(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
CellIdentifier = @"CustomCell";
CustomTableCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if(cell == nil) {
cell = [[CustomTableCell alloc] init];
}
[cell.segmentedControl setTintColor:GRAY_COLOR];
[[[cell.segmentedControl subviews] objectAtIndex:0] setTintColor:BLUE_COLOR];
...
return (UITableViewCell *) cell;
}
This UISegmentedControl's UISegmentedControlStyle is UISegmentedControlStyleBar, if that matters.
