gpt4 book ai didi

ios - 如何在 willDisplayCell 方法中配置 UITableViewCell?

转载 作者:行者123 更新时间:2023-11-28 18:05:27 26 4
gpt4 key购买 nike

我正在尝试在将显示单元格中对 UITableViewCell 进行初始设置,但它不起作用。谁能帮帮我?

-(void) tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *) cell forRowAtIndexPath:(NSIndexPath *)indexPath
{
cell.awtxt.font = [UIFont fontWithName:@"Helvetica" size:15.0]; //i am unable to set this .awtxt is the property outlet in my custom ui table view cell named as "postCell"
}

最佳答案

对我来说,当我将方法从 UITableViewCell 更改为我的自定义单元格时,它起作用了。所以只需将 UITableViewCell 替换为您自定义的 postCell

 -(void) tableView:(UITableView *)tableView willDisplayCell:(postTableViewCell *) cell forRowAtIndexPath:(NSIndexPath *)indexPath // replace "postTableViewCell" with your cell
{

cell.awtxt.font = [UIFont fontWithName:@"Helvetica" size:15.0]; //i am unable to set this .awtxt is the property outlet in my custom ui table view cell named as "postCell"

}

关于ios - 如何在 willDisplayCell 方法中配置 UITableViewCell?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25990916/

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