博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
设置代码ios中根据文本设置label高度设置代码
阅读量:5068 次
发布时间:2019-06-12

本文共 962 字,大约阅读时间需要 3 分钟。

本文纯属个人见解,是对前面学习的总结,如有描述不正确的地方还请高手指正~

UILabel * label = [[UILabel alloc] init];        NSString * text = @"hellohellohellohellohellohellohellohellohellohellohellohello ";        label.text = text;    [label setNumberOfLines:0];    UIFont *font = [UIFont fontWithName:@"Arial" size:14];        //设置字体        label.font = font;        CGSize size = CGSizeMake(300, 20000.0f);    size = [text sizeWithFont:font constrainedToSize:size lineBreakMode:NSLineBreakByCharWrapping];    [label setFrame:CGRectMake(10, 0, size.width, size.height)];    [label setFrame:CGRectMake(10, 0, 200, 100)];   [self.view addSubview:label];

    这是网上的代码,可以正常运行。但还到遇一个题问,就是这里的label是态动生成的,如果对于view中一个拖出来的label然后在controller中连接一个对应的属性,这个label的setFrame一直效无,这时可以点到size inspector中,找到constraints中的height equals,点击前面的齿轮图案,选择select and edit,在height constraints中将Priority的值设置的小一些可即。

文章结束给大家分享下程序员的一些笑话语录: 看到有人回帖“不顶不是中国人”,他的本意是想让帖子沉了。

转载于:https://www.cnblogs.com/jiangu66/archive/2013/04/19/3031627.html

你可能感兴趣的文章
4.9 Parser Generators
查看>>
redis集群如何清理前缀相同的key
查看>>
redis7--hash set的操作
查看>>
20.字典
查看>>
Python 集合(Set)、字典(Dictionary)
查看>>
oracle用户锁定
查看>>
(转)盒子概念和DiV布局
查看>>
Android快速实现二维码扫描--Zxing
查看>>
获取元素
查看>>
nginx+lighttpd+memcache+mysql配置与调试
查看>>
ubuntu12.04 启动apache2 对.htaccess 的支持
查看>>
proxy写监听方法,实现响应式
查看>>
前端工具----iconfont
查看>>
Azure Site Recovery 通过一键式流程将虚拟机故障转移至 Azure虚拟机
查看>>
Hello China操作系统STM32移植指南(一)
查看>>
cocos2dx CCEditBox
查看>>
VC++2012编程演练数据结构《8》回溯法解决迷宫问题
查看>>
第一阶段冲刺06
查看>>
WIN下修改host文件并立即生效
查看>>
十个免费的 Web 压力测试工具
查看>>