1、確定Label或Button的字體大小旭寿,使其寬度自適應
UILabel *contentLabel = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 120, 30)];
contentLabel.font = [UIFont systemFontOfSize:15];//-------->定義Font的大小
contentLabel.backgroundColor = [UIColor redColor];
contentLabel.text = @"我已知曉,且已閱讀并同意以上條款";
[contentLabel sizeToFit];//-------->注意和上面一句代碼順序不能顛倒
[self.View addSubview:contentLabel];
2掐场、確定Label或Button的寬度,使字體大小自適應
//無需自己設置字體大小
UILabel *contentLabel = [[UILabel alloc]initWithFrame:CGRectMake(100, 100, 120, 30)];
contentLabel.backgroundColor = [UIColor redColor];
contentLabel.text = @"我已知曉,且已閱讀并同意以上條款";
contentLabel.adjustsFontSizeToFitWidth = YES;//默認為NO-------->注意和上面一句代碼順序不能顛倒
[self.View addSubview:contentLabel];
如果是Button的話缎讼,和上面一樣,只有一點小小的區(qū)別:
[button.titleLabel sizeToFit];
button.titleLabel.adjustsFontSizeToFitWidth = YES;
下面是自己封裝的一個自適應Label寬高及字間距坑匠、行間距的Demo:https://github.com/zhuchenglong/LabelDemo