0

GOAL : セルの背景ビューをカスタマイズする。

これが私がやっていることです

-(UITableViewCell*)tableView:(UITableView*)tableView cellForRowAtIndexPath:(NSIndexPath*)indexPath {
    NSLog(@"cellForRowAtIndexPath cellForRowAtIndexPath");
    static NSString *cellIdentifier = @"CellIdentifier";
    UITableViewCell *cell   =   [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if ( cell == nil ) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier];
    }
    cell.backgroundView = [[CustomCellBackground alloc] initWithFrame:CGRectMake(0, 0, 200, 80)];

    cell.backgroundColor=   [UIColor purpleColor];

    return cell;
}

CustomCellBackground.m

- (id)initWithFrame:(CGRect)frame
{
    self = [super initWithFrame:frame];
    NSLog(@"frame.x = %f",frame.origin.x);
    NSLog(@"frame.y = %f",frame.origin.y);
    NSLog(@"frame.width = %f",frame.size.width);
    NSLog(@"frame.height = %f",frame.size.height);
    if (self) {
        self.backgroundColor    =   [UIColor purpleColor];

    }
    return self;
}

- (void)drawRect:(CGRect)rect
{
NSLog(@"frame.x = %f",self.frame.origin.x);
NSLog(@"frame.y = %f",self.frame.origin.y);
NSLog(@"frame.width = %f",self.frame.size.width);
NSLog(@"frame.height = %f",self.frame.size.height);


}

CustomCellBacground では、initWithFrame と drawRect メソッドでフレームのサイズを出力しています。

    IN INITWITHFRAME
frame.x = 0.000000
frame.y = 0.000000
frame.width = 200.000000
frame.height = 80.000000

    IN DRAWRECT

//Updated as requested
rect.x = 0.000000
rect.y = 0.000000
rect.width = 302.000000
rect.height = 201.000000

frame.x = 9.000000
frame.y = 0.000000
frame.width = 302.000000
frame.height = 201.000000

drawRect()質問 : フレームのサイズが最近変更されたのはなぜですか。これらの値はinitWithFrame

4

1 に答える 1

0

セルのサイズが変更backgroundViewされ、セルがいっぱいになります。渡すフレームinitWithFrame:は関係ありません。

于 2012-06-15T20:18:22.600 に答える