无法设置UITableViewCell的contentView框架

时间:2012-08-31 10:39:44

标签: objective-c uitableview

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

enter image description here

相应的代码如下。

MyCell.m

#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

1 个答案:

答案 0 :(得分:1)

向我们展示与[cell.contentView setCenter:center]相关的代码;我怀疑你正试图移动细胞的主视图。我不这样做,我会添加一个子视图和偏移,并添加您的内容视图。由于您已经在使用自定义方法,因此需要在那里进行所有更改。此外,值得注意的是,您每次重复使用时都需要重置单元格偏移量,因为您最终会进一步移动内容。