gpt4 book ai didi

ios - 获取表格左侧的宽度?

转载 作者:行者123 更新时间:2023-11-28 22:37:53 27 4
gpt4 key购买 nike

我想获得 UITableView 的左右“装订线”宽度。有什么方法可以访问它们吗?

Grouped UITableView

我正在寻找一种编程方式来执行此操作,尤其是因为它在 iPhone 和 iPad 上有所不同。

最佳答案

应该不会出现需要使用这样一个值的情况,但如果您想知道,可以检查[UITableViewCell contentView] 的框架。整个单元格的宽度等于表格的宽度,contentView 限制了您可以使用的区域。

- (void)layoutSubviews {
[super layoutSubviews];

NSLog(@"Cell bounds: %@", NSStringFromCGRect(self.bounds));
NSLog(@"Cell content view frame: %@", NSStringFromCGRect(self.contentView.frame));
}

输出(在全屏分组表格,iPhone 上):

Cell bounds: {{0, 0}, {320, 67}}
Cell content view frame: {{10, 1}, {300, 65}}

关于ios - 获取表格左侧的宽度?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15391981/

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