ios – 检索UITableViewCell框架

前端之家收集整理的这篇文章主要介绍了ios – 检索UITableViewCell框架前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经对这个问题感到沮丧了几天.我正在尝试将UILabel添加到UITableViewCell.我希望UILabel跨越单元格的整个宽度,在右侧和左侧减去5或10,以获得外观.我的问题在于以编程方式确定放置标签的单元格框架的大小.无论我使用哪种UITableViewStyle,cell.contentVew.frame.size.width值都不会接近单元框架本身的宽度.

例如,在我构建的表中,我可以通过继承UITableViewCell并使用手动确定的宽度(通过试验和错误)创建一个UILabel来实现我想要的结果:

CGRectMake(10,12,397,self.contentView.frame.size.height);

但这就是令人烦恼的397号码.我想要一种方法来以编程方式确定任何宽度表或样式应该是什么.这应该是一个简单的过程,只需确定单元格整个框架的宽度,然后减去10或20,这样UILabel的边缘就不会实际接触到单元格的边缘.

但是,如果我将tableViewStyle设置为UITableViewStyleDefault,然后尝试:

NSLog(@"Width: %f",self.contentView.frame.size.width);

我得到320.如果我将样式设置为其他三种样式中的任何一种,则返回的数字为302.即使320数字也不是靠近单元格框架宽度的任何位置(与我手动确定的397的数字一样).

我需要访问哪个值才能返回单元格绘图框的整个宽度?我敢肯定,就像最棘手的问题一样,解决方案会让我想要在额头上打自己,但我现在已经准备好了.

编辑更多信息:

任何有兴趣的人都要澄清一下.我的这个问题主要涉及分组样式表.对于简单的样式,上面我的问题的答案可以通过cellForRowAtIndexPath方法简单地确定:

CGFloat cellWidth = [tableView rectForRowAtIndexPath:indexPath].size.width;

我遇到的问题是rectForRowAtIndexPath方法返回绘制单元格的框架的宽度,这对于普通样式表来说很好,因为单元格宽度是框架的整个宽度.但是,在分组表中,单元格的宽度小于绘制它的框架的宽度,因此此方法将返回一个比单元格宽度宽得多的数字.分组表格样式中单元格的宽度可能是小于表格框架宽度的固定数字,因此这可能是解决问题的方法.如果是这样的话,我会调查并回答我自己的问题.

解决方法

我已经确定了自己的答案,我希望它可以帮助任何人面对同样的问题.我在 this StackOverflow answer.找到的分组tableView的边距的计算

代码将在tableView单元格中提供一个标签,该标签横跨单元格,在单元格的两个边缘之间有一个边距,并在单元格内垂直居中.

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{    
    static NSString *CellIdentifier = @"Cell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
    UILabel *label;
    CGFloat groupedStyleMarginWidth,tableViewWidth;
    UIFont *labelFont = [UIFont boldSystemFontOfSize:17.0]; // Set to whatever you like
    NSString *labelText = @"Test String";

    // Calculate the margin between the cell frame and the tableView
    // frame in a grouped table view style.
    tableViewWidth = tableView.frame.size.width;
    if (tableView.style == UITableViewStyleGrouped) {
        if (tableViewWidth > 20)
            groupedStyleMarginWidth = (tableViewWidth < 400) ? 10 : MAX(31,MIN(45,tableViewWidth*0.06));
        else
            groupedStyleMarginWidth = tableViewWidth - 10;
    }
    else
        groupedStyleMarginWidth = 0.0;

    if (cell == nil) {
        CGRect tableViewRect;
        CGRect labelRect;
        CGFloat x,y,w,h,labelMargin;

        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];

        // Retrieve the rect of the table view.
        tableViewRect = [tableView rectForRowAtIndexPath:indexPath];

        // Set whatever margin around the label you prefer.
        labelMargin = 10;

        // Determine rect values for the label.
        x = tableRect.origin.x + labelMargin;

        // Calculate width of label
        w = tableRect.size.width - (groupedStyleMargin * 2) - (labelMargin * 2);

        // Calculate height of table based on font set earlier.
        h = [labelText sizeWithFont:font].height;

        // Calculate y position for the label text baseline to center
        // vertically within the cell.
        y = (tableRect.origin.y / 2) - (h / 4);

        labelRect = CGRectMake(x,h);

        label = [[UILabel alloc] initWithFrame:labelRect];
        label.text = labelText;
        label.tag = 0;
        [cell.contentView addSubview:stepLabel];
        [label release];
    }
    else {
        label = (UILabel *)[cell viewWithTag:0];
    }
原文链接:https://www.f2er.com/iOS/333382.html

猜你在找的iOS相关文章