如何仅为ios目标c中的特定单元格更改自定义表格视图单元格的框架?

时间:2015-11-06 11:16:47

标签: ios objective-c uitableview

我正在使用自定义表格视图单元格,如果一行是奇数,那么我必须给出一个单元格的左右填充10,否则没有填充。我在自定义表视图类中使用了setFrame,如下所示。但它为所有单元格提供填充。我想仅为奇数行提供填充。预先感谢您的帮助。

- (void)setFrame:(CGRect)frame {
        frame.origin.x += 10;
        frame.size.width = frame.size.width - 20;
        [super setFrame:frame];

}

1 个答案:

答案 0 :(得分:3)

向自定义单元格添加属性,如布尔值。 然后在setFrame:

- (void)setFrame:(CGRect)frame {
    if(self.isOdd) {
        frame.origin.x += 10;
        frame.size.width = frame.size.width - 20;
    }
    [super setFrame:frame];
}

然后

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    [...]
    //check if your cell is odd or not
    if(theCellIsOdd)
        [theCell setIsOdd:YES];
    else
        [theCell setIsOdd:NO];
    [...]
    return theCell;

}