黑马程序员技术交流社区
标题:
根据字体和文字来计算 UILable 的长度和大小
[打印本页]
作者:
zwcshy
时间:
2014-12-4 09:30
标题:
根据字体和文字来计算 UILable 的长度和大小
//Calculate the size necessary for the UILable
NSString *theText = @"Texting";
CGSize theStringSize = [theText sizeWithFont:font
constrainedToSize:theLabel.frame.size
lineBreakMode:theLabel.lineBreakMode];
//Adjust the size of the UILable
theLable.frame = CGRectMake(theLable.frame.origin.x,
theLable.frame.origin.y,
theStringSize.width, theStringSize.height);
theLable.text = theText;
复制代码
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/)
黑马程序员IT技术论坛 X3.2