画像ビューに画像を追加してから、画像ビューをビューに追加しています。カスタム ビューは独自のフレームを無視し、画像ビューから高さを取得しています。どうすればこれを解決できますか?
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UIImage* image = [UIImage imageNamed:@"UILabelMe.png"];
UIImageView *imageView = [[UIImageView alloc] initWithFrame:CGRectMake(10, 10, image.size.width, image.size.height)];
[imageView setImage:image];
UIView* customView = [[UIView alloc] initWithFrame:CGRectMake(0, 0, 320, 100)];
[customView addSubview:imageView];
return customView;
}