1

我试图设置我的 UITableViewCell 的 contentView 的偏移量。但是失败了。如图所示,没有偏移。

在此处输入图像描述

对应的代码如下。

我的细胞

#import "MyCell.h"

@implementation MyCell

- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
    // Initialization code
    UIView *backGroundView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    [backGroundView setBackgroundColor:[UIColor grayColor]];
    [self addSubview:backGroundView];

    UIView *frontView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    [frontView setBackgroundColor:[UIColor greenColor]];

    UILabel *myLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, self.bounds.size.width, self.bounds.size.height)];
    myLabel.text = @"My Cell";
    myLabel.backgroundColor = [UIColor clearColor];
    [myLabel setTextAlignment:UITextAlignmentCenter];
    [frontView addSubview:myLabel];

    [self.contentView addSubview:frontView];


    [self bringSubviewToFront:self.contentView];

}
return self;
}

MyTableViewController.m

#import "MyTableViewController.h"

#pragma mark - Table view data source

- (NSInteger)numberOfSectionsInTableView:(UITableView *)tableView
{
return 1;
}

- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
return 1;
}

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"MyCell";

MyCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
    cell = [[MyCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}

CGPoint center = cell.center;
center.x = cell.contentView.bounds.size.width/2 - 20;
[cell.contentView setCenter:center];

NSLog(@"origin.x :%f ,y :%f, width :%f, height :%f",cell.contentView.frame.origin.x, cell.contentView.frame.origin.y, cell.contentView.frame.size.width,cell.contentView.frame.size.height);

return cell;
}

日志

2012-08-31 18:29:34.075 TableViewCellOffsetTest[16169:207] origin.x :-20.000000 ,y :0.000000, width :320.000000, height :44.000000
4

1 回答 1

1

向我们展示您与 [cell.contentView setCenter:center] 相关的代码;我怀疑您正在尝试移动单元格的主视图。我不会那样做,我会添加一个子视图并抵消它并将您的内容视图添加到它。由于您已经在使用自定义方法,因此您需要在此处进行所有更改。此外值得注意的是,您还希望在每次重用时重置单元格偏移量,因为您最终会越来越远地移动内容。

于 2012-08-31T10:56:45.803 回答