gpt4 book ai didi

ios - UITableViewCell textLabel 文本不会设置

转载 作者:行者123 更新时间:2023-11-29 03:47:05 25 4
gpt4 key购买 nike

有一个 UITableViewCell“postCell”,它是一个 IBOutlet,并附加到我放置在 .xib 中的单元格。设置文本标签:

- (void)viewDidAppear:(BOOL)animated
{

postCell.textLabel.text = @"TEXT";

}

什么也没有出现。

编辑:此单元格不是 TableView 的一部分。我看到的每个答案都是假设的。这是一个 UITableViewCell。

最佳答案

- (NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section          {
return 1;
}

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

static NSString *CellIdentifier = @"Cell";
PostCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
if (cell == nil) {
cell = [[PostCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
}
cell.textLabel.text = @"text";
return cell;
}

关于ios - UITableViewCell textLabel 文本不会设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17623258/

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