gpt4 book ai didi

iphone - 如何更改表格 View 中文本字段的字体

转载 作者:行者123 更新时间:2023-12-03 20:52:35 27 4
gpt4 key购买 nike

objective-c 对我来说是新的。如何更改 TableView 中文本字段的字体?这是我现在的代码:

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath 

if (indexPath.section==0)
{
UITextField *textField= [[UITextField alloc] initWithFrame:CGRectMake(0, 0, 205, 21)];
textField.placeholder = @" ";
//textField.text = [listOfItems objectAtIndex:indexPath.row];
textField.tag = indexPath.row;
//textField.textLabel.font = [UIFont fontWithName:@"Helvetica" size:12];
//textField.placeholder = [TeamBDict objectAtIndex:textField.tag];
textField.delegate = self;
cell.accessoryView = textField;
[textField release];
}

最佳答案

textField.font = [UIFont fontWithName:@"Helvetica" size:12];

根据 documentation你应该读过。

关于iphone - 如何更改表格 View 中文本字段的字体,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9841728/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com