添加textField到tableviewheader

简介: 添加textField到tableviewheader
- (CGFloat)tableView:(UITableView *)tableView heightForHeaderInSection:(NSInteger)section{
return 30.0;
}
    -(UIView*) tableView:(UITableView *)tableView viewForHeaderInSection:(NSInteger)section{
    UIView *tableHeaderView = [[UIView alloc] initWithFrame:CGRectMake(40, 0, self.view.frame.size.width - 70, 30)];
    tableHeaderView.backgroundColor =[UIColor grayColor];
    UITextField *sectionTitleTF1 = [[UITextField alloc] initWithFrame:CGRectMake(58, 0, 500, 30)];
    sectionTitleTF1.backgroundColor = [UIColor whiteColor];
    [sectionTitleTF1 setBackgroundColor:[UIColor whiteColor]];
    [sectionTitleTF1 setFont:[UIFont boldSystemFontOfSize:15]];
    [sectionTitleTF1 setBorderStyle:UITextBorderStyleLine];
    [sectionTitleTF1 setTextAlignment:UITextAlignmentCenter];
    [sectionTitleTF1 setKeyboardType:UIKeyboardTypeNumbersAndPunctuation];
    [sectionTitleTF1 becomeFirstResponder];
    [tableHeaderView addSubview:sectionTitleTF1];
    return tableHeaderView;
    }
相关文章
|
7月前
|
前端开发 Java 容器
Java一分钟之-JavaFX控件:Button, TextField, Label等
JavaFX教程概述了构建UI的基本控件:Button用于用户操作,TextField提供文本输入,Label显示静态文本。文章讨论了样式、事件处理和布局管理常见问题及其解决方案,并提供了一个使用这些控件创建简单应用的代码示例,强调实践中提升GUI开发技能的重要性。
171 1
UIAlertView添加textField
UIAlertView添加textField
80 0
|
C#
艾伟_转载:C# WinForm开发系列 - CheckBox/Button/Label/ProgressBar
包含自定义颜色显示的CheckBox,水晶效果按钮,透明圆角Label,Vista效果的ProgressBar等控件(文章及相关代码搜集自网络,仅供参考学习,版权属于原作者! ). 1.自定义颜色显示的CheckBox coloredcheckcontrols.
1475 0
|
JSON 前端开发 数据格式