0

有人知道这个问题的线索吗?

在此处输入图像描述

这就是我创建它的方式

    //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];

我想将此取消按钮垂直居中对齐

第二个问题可能更简单。如何将标题文本的文本颜色从这种无聊的灰色更改为白色?

任何人的解决方案?

4

1 回答 1

2

尝试

CGRect frameTxt = CGRectMake(10, 12, 280, 25);

同样要更改标题文本,您不能使用 tableView:titleForHeaderInSection:您需要使用 UILabel,您可以将其插入字体、大小、颜色和字符串并将其插入 self.tableView.tableHeaderView。

于 2009-08-13T10:13:17.273 回答