Lo he usado minimumFontSize
antes, pero esa función ahora está en desuso y no entiendo muy bien cómo minimumScaleFactor
funciona.
Quiero que el tamaño máximo de fuente sea 10 y el mínimo 7.
¿Cómo puedo reducir el tamaño al tamaño de fuente 7 con el factor de escala?
UILabel
creación:
UILabel *label = [[UILabel alloc] init];
[label setTranslatesAutoresizingMaskIntoConstraints:NO];
label.text = [labelName uppercaseString];
label.textAlignment = NSTextAlignmentCenter;
label.textColor = [UIColor whiteColor];
label.font = [UIFont fontWithName:HELVETICA_FONT_STYLE_BOLD size:9.5];
label.backgroundColor = [UIColor clearColor];
label.minimumScaleFactor = .1f;
[label addConstraints:[NSLayoutConstraint constraintsWithVisualFormat:@"H:[label(WIDTH)]"
options:0
metrics:@{@"WIDTH" : [NSNumber numberWithFloat:buttonSize.width]}
views:NSDictionaryOfVariableBindings(label)]];
[contentView addSubview:label];