0
有什麼方法可以使用UIAppearance來更改UISegmented Controller中選定段的文本顏色,並讓其他段具有相同的顏色?根據UISegmentedControll的狀態更改UILegmentedControll中的UILabel文本
有什麼方法可以使用UIAppearance來更改UISegmented Controller中選定段的文本顏色,並讓其他段具有相同的顏色?根據UISegmentedControll的狀態更改UILegmentedControll中的UILabel文本
NSDictionary *attributesDictionary = [NSDictionary dictionaryWithObjectsAndKeys:
[UIColor colorWithRed:220.0/255.0 green:104.0/255.0 blue:1.0/255.0 alpha:1.0], UITextAttributeTextColor,
[UIColor colorWithRed:1.0 green:1.0 blue:1.0 alpha:1.0], UITextAttributeTextShadowColor,
[NSValue valueWithUIOffset:UIOffsetMake(0, 1)], UITextAttributeTextShadowOffset,
[UIFont systemFontOfSize:14], UITextAttributeFont,
nil];
[[UISegmentedControl appearance] setTitleTextAttributes:attributesDictionary forState:UIControlStateSelected];
文檔:
我剛纔讀它在doc ANW謝謝了很多 – 2012-03-13 13:10:20