Je l'ai utilisé, minimumFontSize
avant, mais cette fonction est maintenant obsolète et je n'arrive pas à comprendre comment minimumScaleFactor
travaux.
je veux le maximum de la taille de la police à 10 et que le minimum à 7.
comment puis-je obtenir la ré-taille vers le bas à la taille de police 7 avec le facteur d'échelle?
EDIT:
UILabel création:
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];