gpt4 book ai didi

iOS 如何以编程方式获取 UILabel View 的高度

转载 作者:行者123 更新时间:2023-11-29 02:04:07 26 4
gpt4 key购买 nike

我是 iOS 开发新手。我正在尝试使用 UILabelUITableView 创建 View 。 UILabel 用于显示一些标题文本,tableview 位于标题下方,它覆盖了屏幕的其余部分。

我正在使用代码而 Non-Storyboard 方法创建此 View 。因此我需要将我的 tableview 的高度和宽度指定为约束。对于宽度,我设置了一个约束,它与容器 View 的宽度相匹配。但是对于高度,我希望使用以下等式:

tableview 的高度 = container view 的高度 - UILabel 的高度

为此,我需要知道如何通过代码获取容器和 UILabel 的高度。我尝试了以下方法-

CGFloat header_height=lblHeader.bounds.size.height;

但这给出了与容器 View 的高度相同的高度。即460. 有人可以解释一下如何获得 UIlabel View 的高度吗?

最佳答案

要获取 UILabel 的高度,请执行以下操作:

CGFloat header_height = lblHeader.frame.size.height;

框架和边界是不一样的。

Cocoa: What's the difference between the frame and the bounds?

关于iOS 如何以编程方式获取 UILabel View 的高度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29986757/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com