您的位置:首页 > 其它

标签按照内容长度修改高度:

2013-09-10 17:18 232 查看
 CGRect newFrame = self.labelDescription.frame;
    
    [self.labelDescription sizeToFit];
    
    newFrame.size = CGSizeMake(maxDescriptionWidth, self.labelDescription.frame.size.height);
    
    self.labelDescription.frame = newFrame;
    
    if (self.labelDescription.frame.size.height > maxDescriptionHeight) {
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: