有人知道这个问题吗?
这就是我如何创造它
//create the textfield
CGRect frameTxt = CGRectMake(10, 12, 280, 30);
txtFavouriteName = [[UITextField alloc] initWithFrame:frameTxt];
txtFavouriteName.clearButtonMode = UITextFieldViewModeWhileEditing;
txtFavouriteName.textColor = [UIColor blueColor];
txtFavouriteName.backgroundColor = [UIColor clearColor];
那就是我如何将它添加到正确的tableview单元格
[cell.contentView addSubview:self.txtFavouriteName];
我想将此取消按钮对齐垂直中间
第二个问题可能更简单。如何将标题文本的文本颜色从这个无聊的灰色更改为白色?
任何解决方案?
答案 0 :(得分:2)
尝试
CGRect frameTxt = CGRectMake(10, 12, 280, 25);
另外要更改标题文本,不能使用tableView:titleForHeaderInSection: 您需要使用UILabel,您可以插入字体,大小,颜色和字符串,并将其插入self.tableView.tableHeaderView。