Change font size of UISegmentedControl

前端 未结 16 1797
死守一世寂寞
死守一世寂寞 2020-11-28 20:54

Can anyone please tell me how can I change the font type and size of UISegmentedControl?

16条回答
  •  执念已碎
    2020-11-28 20:55

    XCode 8.1, Swift 3

    import UIKit
    class ViewController: UIViewController {
        override func viewDidLoad() {
            super.viewDidLoad()
            UISegmentedControl.appearance().setTitleTextAttributes(NSDictionary(objects: [UIFont.systemFont(ofSize: 24.0)], 
            forKeys: [NSFontAttributeName as NSCopying]) as? [AnyHashable : Any], 
            for: UIControlState.normal)
        }
    }
    

    just change the number value (ofSize: 24.0)

    Preview

提交回复
热议问题