ios 计算label宽度(高度)出错在iPhone5s、iphone6上出错

今天使用Label的时候,需要计算UILabel的高度,发现在4,4s上显示正常,在iPhone5s、iphone6上显示出错

使用的方法为:

NSString *teacherComment = @"评语是写给学生看的,所以一方面评语要使用学生能看得懂的英语来写,所使用的词汇和语法不能过高或过低于学生的现有水平,要切合学生的实际水平,符合学生的个性心理...";

    float commentHeight = 0.0;
    if ([teacherComment isEqual:@""]||teacherComment==nil||[[NSNull null] isEqual:teacherComment]) {
        commentHeight = BASIC_LABEL_HEIGHT;
    }else{
        CGSize commentRect = [teacherComment sizeWithFont:[UIFont fontWithName:TITLE_FONT size:FONT_SIZE_FOURTEEN] constrainedToSize:CGSizeMake(180, CGFLOAT_MAX) lineBreakMode:NSLineBreakByCharWrapping];

        if (commentRect.height > BASIC_LABEL_HEIGHT) {
            commentHeight = commentRect.height;
        }
        else
        {
            commentHeight = BASIC_LABEL_HEIGHT;
        }
    }

这段代码在iPhone4或iPhone4s上显示正常,系统分别是ios7,ios8的系统。但是在iphone5s与iphone6的真机上运行后发现少了显示不正常,有些误差。

这个问题很奇怪了,在此记录,上网搜索一下,使用一下方法即可:

NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init];
        paragraphStyle.lineBreakMode = NSLineBreakByWordWrapping;

        NSDictionary *attributes = @{NSFontAttributeName:[UIFont fontWithName:TITLE_FONT size:FONT_SIZE_FOURTEEN], NSParagraphStyleAttributeName:paragraphStyle.copy};

        CGSize labelSize = [teacherCommentLabel.text boundingRectWithSize:CGSizeMake(180.0f, CGFLOAT_MAX) options:NSStringDrawingUsesLineFragmentOrigin attributes:attributes context:nil].size;
        labelSize.height = ceil(labelSize.height);
        labelSize.width = ceil(labelSize.width);

        if (labelSize.height > BASIC_LABEL_HEIGHT) {
            commentHeight = labelSize.height;
        }
        else
        {
            commentHeight = BASIC_LABEL_HEIGHT;
        }

使用的时候还需要判断系统版本,所以需要注意一下,如果是ios7则使用该方法,ios6则使用上面的一个方法。

误差如图所示:

如果您有什么好的方法,请留言告知,谢谢。。。

延伸阅读:www.wahenzan.com

时间: 2024-10-29 13:58:41

ios 计算label宽度(高度)出错在iPhone5s、iphone6上出错的相关文章

iOS 计算label的高度

+ (CGFloat)labelHeight:(UILabel *)label lines:(NSInteger)lines { NSRange range = NSMakeRange(0, label.attributedText.length); NSDictionary *dic = [label.attributedText attributesAtIndex:0 effectiveRange:&range]; CGSize size = CGSizeMake(label.bounds.

iOS textFiledView,label自适应高度

CGSize constraintSize; constraintSize.width = 320; constraintSize.height = MAXFLOAT; CGSize sizeFrame =[infoTextView.text sizeWithFont:infoTextView.font = [UIFont systemFontOfSize:12.0] constrainedToSize:constraintSize lineBreakMode:NSLineBreakByWord

ios 设置label的高度随着内容的变化而变化

好吧 步骤1:创建label _GeRenJianJie = [[UILabel alloc]init]; 步骤2:设置label _GeRenJianJie.textColor = RGBAColor(95, 104, 115, 1); _GeRenJianJie.numberOfLines = 0; // 需要把显示行数设置成无限制 _GeRenJianJie.font = [UIFont systemFontOfSize:16]; _GeRenJianJie.textAlignment =

iOS 计算文字宽度的一个细节

设计师给到的图,经常是 "按钮的左边距离文字右边5px" 这样子的标注.于是我们需要计算文字的宽度. 有两种方法: 用 label 或 button 的 sizetofit 方法 [label sizeToFit]; NSLog(@"label size is %@",[NSValue valueWithCGSize:label.bounds.size]); 用 sizeWithAttributes方法 CGSize size = [label.text sizeW

IOS 计算UILable字符串高度

IOS7 之前 截取了部分 @interface ZGViewCell () @property (nonatomic, strong) UILabel *nameLable; @end - (UILabel *)nameLable{ if (_nameLable == nil) { _nameLable = [[UILabel alloc] init]; [self.contentView addSubview:_nameLable]; // _nameLable.backgroundColo

ios计算内容的高度 (含7.0前及以后的版本的用法)

+ (CGFloat)heightForContent:(MyMsgTextModel *)content withWidth:(CGFloat)width { CGSize contentSize; if (SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(@"7.0")) { NSMutableParagraphStyle *paragraphStyle = [[NSMutableParagraphStyle alloc]init]; paragrap

ios--动态计算label的高度

#import "ViewController.h" @interface ViewController () { UILabel *dynamicLabel; } @end @implementation ViewController - (void)viewDidLoad { if (!dynamicLabel) { dynamicLabel=[[UILabel alloc]init]; } dynamicLabel.backgroundColor=[UIColor redColo

IOS应用在ios7(iPhone5/iPhone5s)上不能全屏显示

前言 [IOS应用在iOS7系统或者iPhone5/iPhone5s上不能全屏显示,应用画面上下各有1条黑色,但是在其他系统或者型号的手机上却是正常显示 Paste_Image.png Paste_Image.png 解决方案 第一步 点击Launch Images Source后面的Use Asset Catalog按钮,会弹出Migrate launch images to an asset catalog对话框,点击Migrate按钮后,会将Launch Images Source设置为L

iOS动态计算Label的宽高

1.根据文字计算Label的宽度 1 +(CGFloat)widthOfString:(NSString *)string font:(UIFont *)font height:(CGFloat)height 2 { 3 NSDictionary * dict=[NSDictionary dictionaryWithObject: font forKey:NSFontAttributeName]; 4 CGRect rect=[string boundingRectWithSize:CGSize