修改UISegmentedControl的字體大小
2 min readFeb 8, 2018
因為UISegmentedControl內容的字體無法直接在storyboard直接調整,所以如果把SegmentedControl的高度調高,可能會覺得字有點小,所以就找了一下解決辦法,感謝估狗大神:
class ViewController: UIViewController {
@IBOutlet weak var mySegmented: UISegmentedControl!
override func viewDidLoad() {
super.viewDidLoad()
let customFont:NSDictionary = [NSForegroundColorAttributeName:UIColor.red,NSFontAttributeName:UIFont.boldSystemFont(ofSize: 20)];
mySegmented.setTitleTextAttributes(customFont as? [AnyHashable : Any], for: .normal);
}
} //属性
//UITextAttributeTextColor
//UITextAttributeTextShadowColor
//UITextAttributeTextShadowOffset
//UITextAttributeFont
//UIFontfontWithName