1

UITableViewCell の contentView のオフセットを設定しようとしています。しかし、失敗しました。写真でわかるように、オフセットはありません。

ここに画像の説明を入力

対応するコードは以下の通りです。

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
4

1 に答える 1

1

[cell.contentView setCenter:center]; に関するコードを表示してください。セルのメイン ビューを移動しようとしていると思われます。サブビューを追加してそれをオフセットし、コンテンツビューを追加することはしません。既にカスタム メソッドを使用しているため、すべての変更はそこで行う必要があります。さらに、再利用するたびにセルのオフセットをリセットする必要があることにも注意してください。

于 2012-08-31T10:56:45.803 に答える