黑马程序员技术交流社区

标题: 根据字体和文字来计算 UILable 的长度和大小 [打印本页]

作者: zwcshy    时间: 2014-12-4 09:30
标题: 根据字体和文字来计算 UILable 的长度和大小
  1. //Calculate the size necessary for the UILable
  2. NSString *theText = @"Texting";
  3. CGSize theStringSize = [theText sizeWithFont:font
  4.     constrainedToSize:theLabel.frame.size
  5.     lineBreakMode:theLabel.lineBreakMode];

  6. //Adjust the size of the UILable
  7. theLable.frame = CGRectMake(theLable.frame.origin.x,
  8.     theLable.frame.origin.y,
  9.     theStringSize.width, theStringSize.height);
  10. theLable.text = theText;
复制代码





欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2