Alterar o tamanho da fonte de UISegmentedControl


Respostas:


502

Eu tive o mesmo problema. Esse código define o tamanho da fonte para todo o controle segmentado. Algo semelhante pode funcionar para definir o tipo de fonte. Observe que isso está disponível apenas para iOS5 +

Obj C :

UIFont *font = [UIFont boldSystemFontOfSize:12.0f];
NSDictionary *attributes = [NSDictionary dictionaryWithObject:font
                                                       forKey:NSFontAttributeName];
[segmentedControl setTitleTextAttributes:attributes 
                                forState:UIControlStateNormal];

EDIT: UITextAttributeFontfoi preterido - use em seu NSFontAttributeNamelugar.

EDIT # 2: Para Swift 4 NSFontAttributeNamefoi alterado para NSAttributedStringKey.font.

Swift 5 :

let font = UIFont.systemFont(ofSize: 16)
segmentedControl.setTitleTextAttributes([NSAttributedString.Key.font: font], for: .normal)

Swift 4 :

let font = UIFont.systemFont(ofSize: 16)
segmentedControl.setTitleTextAttributes([NSAttributedStringKey.font: font],
                                        for: .normal)

Swift 3 :

let font = UIFont.systemFont(ofSize: 16)
segmentedControl.setTitleTextAttributes([NSFontAttributeName: font],
                                        for: .normal)

Swift 2.2 :

let font = UIFont.systemFontOfSize(16)
segmentedControl.setTitleTextAttributes([NSFontAttributeName: font], 
    forState: UIControlState.Normal)

Graças às implementações Swift de @ audrey-gordeev


4
Isso funciona muito bem, mas se eu já fiz a [mySegmentedControl setTintColor:onColor forTag:kTagOnState];e a [mySegmentedControl setTintColor:offColor forTag:kTagOffState];, aplique [mySegmentedControl setTitleTextAttributes:attributes forState:UIControlStateNormal];as cores que acabei de definir.
scooter133

3
disponível no iOS 5.0 ou posterior
rakeshNS

8
no iOS7:NSDictionary *attributes = @{NSFontAttributeName: [UIFont boldsystemFontOfSize:12.0f]};
Jason Moore

2
@JasonMoore boldSystemFontOfSize:(capital S para System)
Guillaume

1
Funciona bem no iOS 8. Lembre-me novamente, POR QUE não há atributo "fonte" ...? (Apple tem muito o que explicar ...!)
Mike Gledhill

52

Use a API Appearance no iOS 5.0 ou superior:

[[UISegmentedControl appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"STHeitiSC-Medium" size:13.0], UITextAttributeFont, nil] forState:UIControlStateNormal];

Links: http://developer.apple.com/library/ios/#documentation/UIKit/Reference/UIAppearance_Protocol/Reference/Reference.html#//apple_ref/doc/uid/TP40010906

http://www.raywenderlich.com/4344/user-interface-customization-in-ios-5


5
UITextAttributeFontfoi depreciado - use em seu NSFontAttributeNamelugar.
Portland Runner

6
Vale notar que ele mudará a fonte de ALL UISegmentedControls.
Vive

36

Aqui está uma versão rápida da resposta aceita:

Swift 3 :

let font = UIFont.systemFont(ofSize: 16)
segmentedControl.setTitleTextAttributes([NSFontAttributeName: font],
                                        for: .normal)

Swift 2.2 :

let font = UIFont.systemFontOfSize(16)
segmentedControl.setTitleTextAttributes([NSFontAttributeName: font], 
    forState: UIControlState.Normal)

13

Outra opção é aplicar uma transformação ao controle. No entanto, reduzirá tudo, inclusive as fronteiras de controle.

segmentedControl.transform = CGAffineTransformMakeScale(.6f, .6f);

Graças a este código de trabalho simples. Escalá-lo para 0,75f no iOS6 fornece o melhor resultado. Se usado em uma célula da tabela, adicione 10 à altura da célula.
precisa saber é o seguinte

1
Não é assim que você altera o tamanho da fonte em qualquer controle no iOS. A transformação afim se destina principalmente a ser usada com animações.
vahotm

1
Por favor, não dimensione os controles padrão.
Michael Peterson

@MichaelPeterson seria bom ter muito mais controles padrão personalizáveis, para que ninguém precise fazer um hack como este.
Zaporozhchenko Oleksandr

9

Estilo rápido:

UISegmentedControl.appearance().setTitleTextAttributes(NSDictionary(objects: [UIFont.systemFontOfSize(14.0)], forKeys: [NSFontAttributeName]), forState: UIControlState.Normal)

1
Você deve usar o dicionário de estilo rápido. [NSFontAttributeName: font]
OSRL

8

Aqui eu atualizei para iOS8

[[UISegmentedControl appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont fontWithName:@"STHeitiSC-Medium" size:13.0], NSFontAttributeName, nil] forState:UIControlStateNormal];

7

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)
    }
}

basta alterar o valor numérico (ofSize: 24.0)

Pré-visualização


4
// Set font-size and font-femily the way you want
UIFont *objFont = [UIFont fontWithName:@"DroidSans" size:18.0f];

// Add font object to Dictionary
NSDictionary *dictAttributes = [NSDictionary dictionaryWithObject:objFont forKey:NSFontAttributeName];

// Set dictionary to the titleTextAttributes
[yourSegment setTitleTextAttributes:dictAttributes forState:UIControlStateNormal];

Se você tiver alguma dúvida, entre em contato comigo.


objFont retorna nilvalor.
itzmebibin

3

C # / Xamarin:

segment.SetTitleTextAttributes(new UITextAttributes { 
    Font = UIFont.SystemFontOfSize(font_size) }, UIControlState.Normal);

3

Swift 4

let font = UIFont.systemFont(ofSize: 16)
UISegmentedControl.setTitleTextAttributes([NSFontAttributeName: font], for: .normal)

Erro: Instance member 'setTitleTextAttributes' cannot be used on type 'UISegmentedControl'; did you mean to use a value of this type instead? iOS13 / Swift5
Sky

2

Daniel me apontou para o caminho correto. Eu usei assim -

float scaleFactor = 0.8f;

UISegmentedControl *segmentedControl = [[UISegmentedControl alloc]
initWithFrame:CGRectMake(10, 70, 300/scaleFactor,35)];

[segmentedControl insertSegmentWithTitle:@"..." atIndex:0 animated:NO];
[segmentedControl insertSegmentWithTitle:@"..." atIndex:1 animated:NO];
[segmentedControl insertSegmentWithTitle:@"..." atIndex:2 animated:NO];

segmentedControl.transform = CGAffineTransformMakeScale(scaleFactor, 1);
CGPoint segmentedControlCenter = segmentedControl.center;
segmentedControlCenter.x = self.center.x;
segmentedControl.center = segmentedControlCenter;

1

Extensão para UISegmentedControla configuração do tamanho da fonte.

extension UISegmentedControl {
    @available(iOS 8.2, *)
    func setFontSize(fontSize: CGFloat) {
            let normalTextAttributes: [NSObject : AnyObject]!
            if #available(iOS 9.0, *) {
                normalTextAttributes = [
                    NSFontAttributeName: UIFont.monospacedDigitSystemFontOfSize(fontSize, weight: UIFontWeightRegular)
                ]
            } else {
                normalTextAttributes = [
                    NSFontAttributeName: UIFont.systemFontOfSize(fontSize, weight: UIFontWeightRegular)
                ]
            }

        self.setTitleTextAttributes(normalTextAttributes, forState: .Normal)
    }
 }

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

Embora esse código pode responder à pergunta, fornecendo informações sobre como e por que ele resolve o problema melhora o seu valor a longo prazo
L_j


0

Você pode obter a fonte real do UILabel examinando recursivamente cada uma das exibições começando com o UISegmentedControl. Não sei se é a melhor maneira de fazê-lo, mas funciona.

@interface tmpSegmentedControlTextViewController : UIViewController {
}

@property (nonatomic, assign) IBOutlet UISegmentedControl * theControl;

@end

@implementation tmpSegmentedControlTextViewController

@synthesize theControl; // UISegmentedControl

- (void)viewDidLoad {
  [self printControl:[self theControl]];
  [super viewDidLoad];
}

- (void) printControl:(UIView *) view {
  NSArray * views = [view subviews];
  NSInteger idx,idxMax;
  for (idx = 0, idxMax = views.count; idx < idxMax; idx++) {
    UIView * thisView = [views objectAtIndex:idx];
    UILabel * tmpLabel = (UILabel *) thisView;
    if ([tmpLabel respondsToSelector:@selector(text)]) {
      NSLog(@"TEXT for view %d: %@",idx,tmpLabel.text);
      [tmpLabel setTextColor:[UIColor blackColor]];
    }

    if (thisView.subviews.count) {
      NSLog(@"View has subviews");
      [self printControl:thisView];
    }
  }
}

@end

No código acima, estou apenas definindo a cor do texto do UILabel, mas você também pode pegar ou definir a propriedade da fonte.


Essa é uma ótima maneira de garantir que uma atualização do iOS interrompa o código que você enviou aos seus clientes. Isso pode funcionar agora, mas não há absolutamente nenhuma garantia de que isso continuará funcionando no futuro.
Apoorv Khatreja

0

este é para o objetivo c adicionar seu nome de controle segmentado no lugar de mysegmentedcontrol

UIFont *font = [UIFont systemFontOfSize:11.0f];

NSDictionary *attributes = [NSDictionary dictionaryWithObject:font
                                                            forKey:UITextAttributeFont];

[mySegmentedcontrol setTitleTextAttributes:attributes                                    forState:UIControlStateNormal];

espero que ajude


1
- update - NSDictionary * attribute = @ {NSFontAttributeName: font}; [mySegmentedcontrol setTitleTextAttributes: atributos paraState: UIControlStateNormal];
Benny Davidovitz
Ao utilizar nosso site, você reconhece que leu e compreendeu nossa Política de Cookies e nossa Política de Privacidade.
Licensed under cc by-sa 3.0 with attribution required.