添加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;
    }
相关文章
|
6月前
|
Python
Combobox
在Tkinter中,下拉菜单(Combobox)是一种常用的组件,它允许用户从一组预定义的选项中选择一个或多个值。下面是关于如何在Tkinter中使用下拉菜单组件的详细说明:
52 1
|
6月前
|
前端开发 Java 容器
Java一分钟之-JavaFX控件:Button, TextField, Label等
JavaFX教程概述了构建UI的基本控件:Button用于用户操作,TextField提供文本输入,Label显示静态文本。文章讨论了样式、事件处理和布局管理常见问题及其解决方案,并提供了一个使用这些控件创建简单应用的代码示例,强调实践中提升GUI开发技能的重要性。
129 1
UIAlertView添加textField
UIAlertView添加textField
74 0