iOS获取Label高度的几种方法与对比

介绍

在设置 UILabel 的 Frame 高度时,不能简单的设置为字体的 font size。否则会将字体的一部分裁剪掉。因为 UILabel 在不同的字体设置下,对 Frame 的高度要求也不一样,大多数情况下都比Font的高度设置要高一些。

一、sizeThatFits

使用 view sizeThatFits 方法。

// return 'best' size to fit given size. does not actually resize view. Default is return existing view size
- (CGSize)sizeThatFits:(CGSize)size;

例子:

UILabel *testLabel = [[UILabel alloc] init];
testLabel.font = [UIFont systemFontOfSize:30];
testLabel.text = @"Today is a fine day";
CGSize size = [testLabel sizeThatFits:CGSizeMake(200, 30)];
NSLog(@"size = %@", NSStringFromCGSize(size));

输出:size = {246.33333333333334, 36}

二、sizeToFit

使用 view sizeToFit 方法。

注意:sizeToFit 会改变 view 原来的 bounds,而 sizeThatFits 不会。

// calls sizeThatFits: with current view bounds and changes bounds size.
- (void)sizeToFit;

例子

UILabel *testLabel = [[UILabel alloc] init];
testLabel.font = [UIFont systemFontOfSize:30];
testLabel.text = @"Today is a fine day";
[testLabel sizeToFit];
NSLog(@"size = %@", NSStringFromCGSize(testLabel.frame.size));

输出:size = {246.33333333333334, 36}

三、sizeWithAttributes

使用 NSString sizeWithAttributes 方法。

- (CGSize)sizeWithAttributes:(nullable NSDictionary<NSString *, id> *)attrs NS_AVAILABLE(10_0, 7_0);

例子

NSString *text = @"Today is a fine day";
UIFont *font = [UIFont systemFontOfSize:30];
CGSize size = [text sizeWithAttributes:@{
           NSFontAttributeName : font
           }];
NSLog(@"size = %@", NSStringFromCGSize(size));

输出: size = {246.3134765625, 35.80078125}

四、boundingRectWithSize

使用 NSString boundingRectWithSize 方法。

// NOTE: All of the following methods will default to drawing on a baseline, limiting drawing to a single line.
// To correctly draw and size multi-line text, pass NSStringDrawingUsesLineFragmentOrigin in the options parameter.
- (CGRect)boundingRectWithSize:(CGSize)size options:(NSStringDrawingOptions)options attributes:(nullable NSDictionary<NSString *, id> *)attributes context:(nullable NSStringDrawingContext *)context NS_AVAILABLE(10_11, 7_0);

参数的意义:

1、size

限制最大宽高, 虽然是自适应,但是需要限制最大的宽度和高度。

2、options

类型为 NSStringDrawingOptions,用来指明绘制字符串时的渲染选项。

各个选项如下:

typedef NS_OPTIONS(NSInteger, NSStringDrawingOptions) {
 // The specified origin is the line fragment origin, not the base line origin
 // 整个文本将以每行组成的矩形为单位计算整个文本的尺寸
 NSStringDrawingUsesLineFragmentOrigin = 1 << 0, 

 // Uses the font leading for calculating line heights
 // 使用字体的行间距来计算文本占用的范围,即每一行的底部到下一行的底部的距离计算
 NSStringDrawingUsesFontLeading = 1 << 1, 

 // Uses image glyph bounds instead of typographic bounds
 // 将文字以图像符号计算文本占用范围,而不是排版的边界
 NSStringDrawingUsesDeviceMetrics = 1 << 3,

 // Truncates and adds the ellipsis character to the last visible line if the text doesn't fit into the bounds specified.
 // Ignored if NSStringDrawingUsesLineFragmentOrigin is not also set.
 // 如果文本内容超出指定的矩形限制,文本将被截去并在最后一个字符后加上省略号。
 // 如果 NSStringDrawingUsesLineFragmentOrigin 没有设置,则该选项不生效
 NSStringDrawingTruncatesLastVisibleLine NS_ENUM_AVAILABLE(10_5, 6_0) = 1 << 5,
} NS_ENUM_AVAILABLE(10_0, 6_0);

三、attributes

应用于字符串的文本属性。

四、context

NSStringDrawingContext 类型,控制调整字间距和缩放的比例,用于文本绘制时使用。该参数传入 nil 即可。

例子

NSString *text = @"Today is a fine day";
UIFont *font = [UIFont systemFontOfSize:30];
CGRect suggestedRect = [text boundingRectWithSize:CGSizeMake(800, MAXFLOAT)
            options:NSStringDrawingUsesFontLeading
           attributes:@{ NSFontAttributeName : font }
            context:nil];
NSLog(@"size = %@", NSStringFromCGSize(suggestedRect.size));

输出: size = {200, 35.80078125}

四种方式对比

在设置字体为 30 的情况下,前两种使用 view 的方法返回 size = {246.33333333333334, 36} ,后两种使用 NSString 的方法返回 size = {246.3134765625, 35.80078125} 。使用 view 方法比使用  NSString 方法的返回的值略大。

我猜测其原因都是因为,文本渲染引擎在渲染一行文本的时候都需要在label的顶部和底部预留一小部分空间,应该是出于排版美观方面的考量。

在显示不同的 font size 的字体时,获得的字符串高度比 font size 大的值是不同的。

比如 font size 为 13 时,算出高度为 16,font size 为 20 时,算出高度为 24。

所以平常设置 UILabel 高度的时候,也不能简单的在 font height 基础之上加随意值。

总结

以上就是这篇文章的全部内容了,希望本文的内容对给位iOs开发者们能有所帮助,如果有疑问大家可以留言交流。

(0)

相关推荐

  • ios实现自动获取label高度、宽度及最后一个位置详解

    前言 本文主要给大家介绍了关于ios自动获取label高度.宽度及最后一个位置的相关内容,分享出来供大家参考学习,下面话不多说了,来一起看看详细的介绍吧. 一.获取宽度,获取字符串不折行单行显示时所需要的长度 CGSize titleSize = [aString sizeWithFont:font constrainedToSize:CGSizeMake(MAXFLOAT, 30)]; 注:如果想得到宽度的话,size的width应该设为MAXFLOAT. 二.获取高度,获取字符串在指定的si

  • iOS获取Label高度的几种方法与对比

    介绍 在设置 UILabel 的 Frame 高度时,不能简单的设置为字体的 font size.否则会将字体的一部分裁剪掉.因为 UILabel 在不同的字体设置下,对 Frame 的高度要求也不一样,大多数情况下都比Font的高度设置要高一些. 一.sizeThatFits 使用 view 的 sizeThatFits 方法. // return 'best' size to fit given size. does not actually resize view. Default is

  • Android获取文字高度的三种方法

    前言 本文是对获取文字高度整理和总结,参考资料源自 statcoverflow的一个回答.具体参看下面的参考链接 获取文字高度的三个方法 paint.getTextBounds(String text, int start, int end, Rect bounds) paint.getFontMetrics() StaticLayout 1 paint.getTextBounds(String text, int start, int end, Rect bounds) 参数解释 text :

  • Android中获取状态栏高度的两种方法分享

    前言 最近在做一个关于FAB的功能的时候需要获取状态栏的高度,在网上查了很多种方法,下面是选出的比较合理的两个方法.主要参考stackoverflow的这篇问答:http://stackoverflow.com/questions/3407256/height-of-status-bar-in-android 方法一: private double getStatusBarHeight(Context context){ double statusBarHeight = Math.ceil(25

  • iOS Webview自适应实际内容高度的4种方法详解

    //第一种方法 - (void)webViewDidFinishLoad:(UIWebView *)webView { CGFloat webViewHeight=[webView.scrollView contentSize].height; CGRect newFrame = webView.frame; newFrame.size.height = webViewHeight; webView.frame = newFrame; _webTablewView.contentSize = C

  • Android 获取 usb 权限的两种方法

    前言: 最近工作上遇到几个USB模块在android平台上适配使用的情况,所以要用到USB权限获取问题 ##USB权限获取有以下2种方式: 一.直接在AndroidManifest.xml文件中进行如下配置: <activity android:name=".DemoCustomAndroidUSBActivity" android:label="@string/app_name"> <intent-filter> <action an

  • ECharts调用接口获取后端数据的四种方法总结

    目录 方法一:在mounted中使用定时器调用eacharts方法(定时器可以获取到data中的数据) 方法二:在调用数据的时候调用图表(一个页面的所有数据都在这一个接口中) 方法三:使用chartes中的dataset数据集 方法四:在对应图表中,用ajax请求 注意 总结 使用eacharts做大屏,需要使用后端数据,下面的方法是自己试过有效的,有什么不对的,望各位大佬指点. 方法一:在mounted中使用定时器调用eacharts方法(定时器可以获取到data中的数据) mounted (

  • Java Spring Controller 获取请求参数的几种方法详解

    Java Spring Controller 获取请求参数的几种方法  1.直接把表单的参数写在Controller相应的方法的形参中,适用于get方式提交,不适用于post方式提交.若"Content-Type"="application/x-www-form-urlencoded",可用post提交 url形式:http://localhost:8080/SSMDemo/demo/addUser1?username=lixiaoxi&password=1

  • IOS自带Email的两种方法实例详解

    IOS自带Email的两种方法实例详解 IOS系统框架提供的两种发送Email的方法:openURL 和 MFMailComposeViewController.借助这两个方法,我们可以轻松的在应用里加入如用户反馈这类需要发送邮件的功能. 1.openURL 使用openURL调用系统邮箱客户端是我们在IOS3.0以下实现发邮件功能的主要手段.我们可以通过设置url里的相关参数来指定邮件的内容,不过其缺点很明显,这样的过程会导致程序暂时退出.下面是使用openURL来发邮件的一个小例子: #pr

  • iOS 检测网络状态的两种方法

    一般有两种方式,都是第三方的框架,轮子嘛,能用就先用着,后面再优化. 一:Reachability 1.首先在AppDelegate.h添加头文件"Reachability.h",导入框架SystemConfiguration.frame. 2. 在AppDelegate.m中这样实现: - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launc

随机推荐