myTableViewCellクラスを作成したとしましょう。
#import "MyTableViewCell.h"
@implementation MyTableViewCell
- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier
{
self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];
if (self) {
// Initialization code
UIImageView *imgSponsor=[[UIImageView alloc ] initWithFrame:CGRectMake(0,0,self.bounds.size.width,200)];
imgSponsor.image = [UIImage imageNamed:@"imageFirstCell"];
[self.contentView addSubview:imgSponsor];
}
return self;
}
[...]
@end
関連するtableviewcontrollerメソッド(heightForRowAtIndexPath ..)を実行する以外に、このクラス内からこのセルのデフォルトの高さを設定できますか?