我想添加文本框到標題視圖。我無法弄清楚爲什麼我看不到我的文本框。當我使用標籤時,它完美地起作用。添加textview到tableviewheader
以下是代碼:
-(UIView*) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
UIView *tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(40, 0, self.view.frame.size.width - 70, 30)];
UITextField *sectionTitleTF1 = [[UITextField alloc] initWithFrame:CGRectMake(58, 0, 500, 30)];
sectionTitleTF1.backgroundColor = [UIColor whiteColor];
[sectionTitleTF1 becomeFirstResponder];
[tableHeaderView addSubview:sectionTitleTF1];
return tableHeaderView;
}
感謝
很可能是你的rects爲sectionTitleTF1和/或tableHeaderView是錯誤的。 – user523234 2013-02-23 04:59:52