概述
一.效果图
二.代码
- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view. //根据内容自动调整高度 NSString *str = @"公元前3000年,印度河流域的居民的数字使用就已经比较普遍,居民们采用了十进位制的计算法。"; UIFont *font = [UIFont systemFontOfSize:13]; CGSize size = CGSizeMake(200,2000); CGRect labelRect = [str boundingRectWithSize:size options:(NSStringDrawingUsesLineFragmentOrigin|NSStringDrawingUsesFontLeading) attributes:[NSDictionary dictionaryWithObject:font forKey:NSFontAttributeName] context:nil]; //UILabel UILabel *label = [[UILabel alloc]initWithFrame:CGRectMake(50,100, labelRect.size.width, labelRect.size.height)]; label.text = str; label.backgroundColor=[UIColor redColor]; label.font = [UIFont systemFontOfSize:13]; label.numberOfLines=0; [self.view addSubview: label]; }
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持靠谱客。
最后
以上就是舒心小虾米为你收集整理的iOS UILabel根据内容自动调整高度的全部内容,希望文章能够帮你解决iOS UILabel根据内容自动调整高度所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复