21 February 2012 21:15
iphone - Change textColor in UISegmentedcontrol - Stack Overflow
(via)for (id seg in [segment subviews])
for (id label in [seg subviews])
if ([label isKindOfClass:[UILabel class]])
[label setTextColor:[UIColor redColor]];
1
(1 marks)