假设我创建了 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..) 运行之外,我可以在此类中为该单元格设置默认高度吗?