UITableView のヘッダー セクションとして使用しようとしているビューがあります。
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UILabel *name= (UILabel *)[myView viewWithTag:200];
name.text = @"title";
myView.backgroundColor = [UIColor colorWithPatternImage:[UIImage imageNamed:@"row-bg-red.png"]];
return myView;
}
正常に読み込まれますが、下にスクロールして次のヘッダーが表示されると、前のヘッダーは逆になり、消えます。
なにか提案を?