Hi,

Is there a way to reskin UISegmentedControl besides using TintColor?! I have
a UISegmentedControl with TintColor set to 'black' but I can't identify
which segment has been selected or active. I have tried going through
Subviews but no luck, except for perhaps changing UILabel below but not the
gradient background.

UIView[] views = segmentedControl.Subviews;
foreach(UIView view in views) {
        UIView[] segmentViews = view.Subviews;
        UILabel segmentLabel = (UILabel)segmentViews[0];
        segmentLabel.Text = "Segment";
}

Would appreciate for some pointers on this.

Many thanks,

A

--
View this message in context: 
http://monotouch.2284126.n4.nabble.com/Skinning-UISegmentedControl-tp4585050p4585050.html
Sent from the MonoTouch mailing list archive at Nabble.com.
_______________________________________________
MonoTouch mailing list
[email protected]
http://lists.ximian.com/mailman/listinfo/monotouch

Reply via email to