나는 minimumFontSize
전에 사용 했지만 그 기능은 이제 더 이상 사용되지 않으며 어떻게 minimumScaleFactor
작동 하는지 이해하지 못합니다 .
최대 글꼴 크기는 10이고 최소 글꼴 크기는 7입니다.
스케일 팩터를 사용하여 글꼴 크기를 7로 축소하려면 어떻게해야합니까?
UILabel
창조:
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];