Change font size of UISegmentedControl

前端 未结 16 1791
死守一世寂寞
死守一世寂寞 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:56

     UISegmentedControl.appearance().setTitleTextAttributes(NSDictionary(objects: [UIFont.systemFont(ofSize: 16.0)],
                                                                            forKeys: [kCTFontAttributeName as! NSCopying]) as? [AnyHashable : Any],
                                                               for: UIControlState.normal)
    

提交回复
热议问题