在 iPad 的情况下,查找 UITableViewCell 中 contentView 的宽度

发布于 2024-09-28 01:26:17 字数 117 浏览 1 评论 0原文

在 iPAD 上,当您创建新的 UITableViewCell 时,contentView 宽度设置为 320。有没有办法获得正确的宽度?我无法使用当前视图的宽度,因为表格单元格不跨越视图的整个宽度。任何帮助将不胜感激。

On iPAD when you create new UITableViewCell the contentView width set for 320. Is there a way to get the right width? I can't use the width of the current view as the table cells do not span the entire width of the view. Any help would be greatly appreciated.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

森林迷了鹿 2024-10-05 01:26:17

我已经使用以下方法解决了这个问题:

cell.contentView.frame = CGRectMake(cell.contentView.frame.origin.x,
                                        cell.contentView.frame.origin.y,
                                        self.tableView.frame.size.width,
                                        cell.contentView.frame.size.height);

I've solved this issue using:

cell.contentView.frame = CGRectMake(cell.contentView.frame.origin.x,
                                        cell.contentView.frame.origin.y,
                                        self.tableView.frame.size.width,
                                        cell.contentView.frame.size.height);
扭转时空 2024-10-05 01:26:17
- (void)layoutSubviews {
    [super layoutSubviews];
    CGFloat viewWidth = self.contentView.frame.size.width; 

这为 contentView 提供了正确的宽度。如果最初未调用[superlayoutSubviews],则contentView框架未正确设置。

- (void)layoutSubviews {
    [super layoutSubviews];
    CGFloat viewWidth = self.contentView.frame.size.width; 

This gives the right width for contentView. If [super layoutSubviews] is not called initially then the contentView frame is not set correctly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文