Comment changer la taille de police et le nom de police de uisegmentedcontrol par programme? J'ai utilisé Swift.
Voici mon code:
self.mysegmentedControl = UISegmentedControl(items: [
NSLocalizedString("Aaaaaa", comment: ""),
NSLocalizedString("Bbbbbb", comment: ""),
NSLocalizedString("Cccccc", comment: ""),
NSLocalizedString("Dddddd", comment: ""),
NSLocalizedString("Eeeeee", comment: ""),
])
self.mysegmentedControl.addTarget(self, action: "mysegmentedControlDidChange:", forControlEvents: .ValueChanged)
self.mysegmentedControl.selectedSegmentIndex = 0
cordialement.
L'interface utilisateur peut utiliser l'apparence du contrôle. Le meilleur endroit pour l'ajouter est dans délégué d'application, méthode didFinishLaunchingWithOptions
, à utiliser si vous souhaitez configurer le même attribut pour chaque contrôle UISegmentedControls de votre projet:
let attr = NSDictionary(object: UIFont(name: "HelveticaNeue-Bold", size: 16.0)!, forKey: NSFontAttributeName)
UISegmentedControl.appearance().setTitleTextAttributes(attr as [NSObject : AnyObject] , forState: .Normal)
Mais si vous voulez configurer des attributs pour un seul UISegmentedControl ou si vous voulez le changer plus souvent, utilisez une méthode, la méthode UISegmentedControl:
func setTitleTextAttributes(_ attributes: [NSObject : AnyObject]?,
forState state: UIControlState)
Exemple:
let attr = NSDictionary(object: UIFont(name: "HelveticaNeue-Bold", size: 16.0)!, forKey: NSFontAttributeName)
seg.setTitleTextAttributes(attr as [NSObject : AnyObject] , forState: .Normal)
Cette réponse est datée, mais pour ceux qui recherchent une solution dans Swift, vous pouvez essayer cette approche:
func stylizeFonts(){
let normalFont = UIFont(name: "Helvetica", size: 16.0)
let boldFont = UIFont(name: "Helvetica-Bold", size: 16.0)
let normalTextAttributes: [NSObject : AnyObject] = [
NSForegroundColorAttributeName: UIColor.blackColor(),
NSFontAttributeName: normalFont!
]
let boldTextAttributes: [NSObject : AnyObject] = [
NSForegroundColorAttributeName : UIColor.whiteColor(),
NSFontAttributeName : boldFont!,
]
self.setTitleTextAttributes(normalTextAttributes, forState: .Normal)
self.setTitleTextAttributes(normalTextAttributes, forState: .Highlighted)
self.setTitleTextAttributes(boldTextAttributes, forState: .Selected)
}
Assurez-vous d’ajouter stylizeFonts () dans votre viewDidLoad ou en tant que fonction distincte si vous sous-classez.
Pour Swift 4
let font: [AnyHashable : Any] = [NSAttributedStringKey.font : UIFont.systemFont(ofSize: 17)]
segmentedControl.setTitleTextAttributes(font, for: .normal)
Réponse de Greg mise à jour pour Swift3:
let attr = NSDictionary(object: UIFont(name: "OpenSans", size: 12.0)!, forKey: NSFontAttributeName as NSCopying)
UISegmentedControl.appearance().setTitleTextAttributes(attr as [NSObject : AnyObject] , for: .normal)
Swift 2.0
override func viewDidLayoutSubviews() {
let attributedSegmentFont = NSDictionary(object: UIFont(name: "Roboto-Regular", size: 14.0)!, forKey: NSFontAttributeName)
dashBoardSegment.setTitleTextAttributes(attributedSegmentFont as [NSObject : AnyObject], forState: .Normal)
}
Modification pour tous les contrôles de segment, utilisez:
UISegmentedControl.appearance().setTitleTextAttributes(attributedSegmentFont as [NSObject : AnyObject], forState: .Normal)
Utilisation de Swift Extension:
extension UISegmentedControl{
func changeTitleFont(newFontName:String?, newFontSize:CGFloat?){
let attributedSegmentFont = NSDictionary(object: UIFont(name: newFontName!, size: newFontSize!)!, forKey: NSFontAttributeName)
setTitleTextAttributes(attributedSegmentFont as [NSObject : AnyObject], forState: .Normal)
}
}
Extension d'implémentation:
override func viewDidLayoutSubviews() {
dashBoardSegment.changeTitleFont("Roboto-Regular", newFontSize: 14.0)
}
Swift3
override func viewDidLayoutSubviews() {
let attr = NSDictionary(object: UIFont(name: "Chalkduster", size: 14.0)!, forKey: NSFontAttributeName as NSCopying)
segmentedControl.setTitleTextAttributes(attr as [NSObject : AnyObject] , for: .normal)
}
En prolongeant l'excellente approche Swift de MVI. J'ai créé une extension SegmentedControl:
extension UISegmentedControl {
func setFontSize(fontSize: CGFloat) {
let normalTextAttributes: [NSObject : AnyObject] = [
NSForegroundColorAttributeName: UIColor.blackColor(),
NSFontAttributeName: UIFont.systemFontOfSize(fontSize, weight: UIFontWeightRegular)
]
let boldTextAttributes: [NSObject : AnyObject] = [
NSForegroundColorAttributeName : UIColor.whiteColor(),
NSFontAttributeName : UIFont.systemFontOfSize(fontSize, weight: UIFontWeightMedium),
]
self.setTitleTextAttributes(normalTextAttributes, forState: .Normal)
self.setTitleTextAttributes(normalTextAttributes, forState: .Highlighted)
self.setTitleTextAttributes(boldTextAttributes, forState: .Selected)
}
}
Ajoutez simplement le code d'extension ci-dessus à votre projet puis utilisez-le comme ceci:
yourSegmentedControl.setFontSize(20)
Pour Swift 4
let font = UIFont.systemFont(ofSize: 16)
segmentedControl.setTitleTextAttributes([NSAttributedString.Key.font: font],
for: .normal)
Utiliser @Alvin George répond parce que je pense que c'est une bonne idée d'ajouter une extension pour manipuler ça (et l'améliorer pour Swift 4):
Créez une classe d'extension de UISegmentedControl comme UISegmentedControl+Additions.Swift
import Foundation
import UIKit
extension UISegmentedControl {
func font(name:String?, size:CGFloat?) {
let attributedSegmentFont = NSDictionary(object: UIFont(name: name!, size: size!)!, forKey: NSAttributedStringKey.font as NSCopying)
setTitleTextAttributes(attributedSegmentFont as [NSObject : AnyObject], for: .normal)
}
}
Utilisez-le dans votre code:
segmentedControl?.font(name: "My Font Name", size: 12)
Voici la répartition pour changer avec UIAappearance basé sur la réponse approuvée:
var font = UIFont.FromName("HelveticaNeue-Bold", 16f);
var textAttributes = new UITextAttributes { Font = font };
UISegmentedControl.Appearance.SetTitleTextAttributes(textAttributes,
UIControlState.Normal);
Swift 4
@IBOutlet var sgmentTypeSelect: UISegmentedControl!{
didSet {
let normalTextAttributes: [NSAttributedStringKey : AnyObject] = [
NSAttributedStringKey.foregroundColor : UIColor.themeGold,
NSAttributedStringKey.font : UIFont.defaultMontserratFont(style: "SemiBold", size: 13)
]
let selectedTextAttributes: [NSAttributedStringKey : AnyObject] = [
NSAttributedStringKey.foregroundColor : UIColor.black,
NSAttributedStringKey.font : UIFont.defaultMontserratFont(style: "Bold", size: 13)
]
sgmentTypeSelect.setTitleTextAttributes(normalTextAttributes, for: .normal)
sgmentTypeSelect.setTitleTextAttributes(normalTextAttributes, for: .highlighted)
sgmentTypeSelect.setTitleTextAttributes(selectedTextAttributes, for: .selected)
}
}