*iOS5 ARCです。MRCの場合は少しコードを変える必要があります。
//
static const CGFloat kHeight = 40.0f;
- (UIView *)tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section {
UIView *v = [[UIView alloc] init];
UITextField *txtF = [[UITextField alloc] initWithFrame:CGRectMake(0.0f, 0.0f, 160.0f, kHeight)];
v.backgroundColor = [UIColor brownColor];
txtF.textColor = [UIColor yellowColor];
[v addSubview:txtF];
return v;
}
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section {
return kHeight;
}

0 件のコメント:
コメントを投稿