UITableViewCell のサブクラスで layoutSubviews をオーバーライドしています。layoutSubviews がセルごとに 2 回呼び出されることに気付きました。2 番目の呼び出しでは、コンテンツ ビュー フレームの高さは、最初の呼び出しの高さよりも 1 低くなります。
@implementation MyUITableViewCellCell
+ (NSString *)asString:(CGRect) rect {
NSString *res = [[NSString alloc] initWithFormat:@"[%f %f %f %f]",
rect.origin.x, rect.origin.y, rect.size.width, rect.size.height];
[res autorelease];
return res;
}
- (void)layoutSubviews
{
[super layoutSubviews];
NSLog(@"Here I am %@ frame=%@ cvframe=%@,
self.text,
[MyUITableViewCellCell asString:self.frame],
[MyUITableViewCellCell asString:self.contentView.frame]);
}
@end
コントローラーがテーブル セルを作成する方法は次のとおりです。
- (NSString*)dataAtIndex:(NSInteger)index
{
NSString* data = [[NSString alloc] initWithFormat:@"Row %d", index];
return [data autorelease];
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 30;
}
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier = @"Alex";
NSInteger index = [indexPath row];
MyUITableViewCellCell* cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[[MyUITableViewCellCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
}
cell.text = [self dataAtIndex:index];
return cell;
}
出力:
Here I am Row 0 frame=[0.000000 0.000000 320.000000 30.000000] cvframe=[0.000000 0.000000 320.000000 30.000000]
Here I am Row 1 frame=[0.000000 30.000000 320.000000 30.000000] cvframe=[0.000000 0.000000 320.000000 30.000000]
Here I am Row 0 frame=[0.000000 0.000000 320.000000 30.000000] cvframe=[0.000000 0.000000 320.000000 29.000000]
Here I am Row 1 frame=[0.000000 30.000000 320.000000 30.000000] cvframe=[0.000000 0.000000 320.000000 29.000000]
セルごとに 2 回の呼び出しが予想されますか、それとも何か間違っていますか?