3
我注意到,在我的一個分段控件中,很難看到選中哪個段。我在想我可以加粗字體,或者稍微增加字體大小。我試着這樣做,但它不起作用:在uisegmentedcontrol中更改所選段的字體
UIFont *boldFont = [UIFont boldSystemFontOfSize:16.0];
NSDictionary *fontDict = [[NSDictionary alloc] initWithObjectsAndKeys:boldFont, UITextAttributeFont, nil];
[_tableSegmentedControl setTitleTextAttributes:fontDict forState:UIControlStateSelected];
我的文本在段控件的兩個段中看起來都是一樣的。我需要做這樣的事情嗎? Change textColor in UISegmentedcontrol
我希望在iOS 5中更簡單的方法,如果可能的話,增加外觀。謝謝。
可能在這裏回答:http://stackoverflow.com/questions/2280391/change-font-size-of-uisegmentedcontrol – danh