首页 > 系统 > iOS > 正文

iOS UILabel根据内容自动调整高度

2019-10-21 18:45:54
字体:
来源:转载
供稿:网友

一.效果图

iOS,UILabel,调整高度

二.代码

- (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];}

以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持VEVB武林网。


注:相关教程知识阅读请移步到IOS开发频道。
发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表