didSelecctRowAtIndexPath方法如下:

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    self.currSelectedRowTitle = [[self.effectsTableView cellForRowAtIndexPath:indexPath].textLabel text];
    [self performSegueWithIdentifier:@"PushedByTableView" sender:self];
}


而cellForRowAtIndexPath如下:

    -(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    if (!self.effectsArray)
    {
        [self loadEffectsInArray];
    }

    static NSString *cellIdentifier = @"EffectsCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:cellIdentifier];
    if (cell == nil)
    {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleSubtitle reuseIdentifier:cellIdentifier];
    }

    //6
    Effect *effectCellEffect = [self.effectsArray objectAtIndex:indexPath.row];
    NSString *effectCellText = effectCellEffect.name;
    //7
    [cell.textLabel setText:effectCellText];
    //[cell.detailTextLabel setText:@"5 stars!"];
    cell.textLabel.font = [UIFont systemFontOfSize:[UIFont labelFontSize]];
    //cell.backgroundColor = [UIColor blackColor];
    //cell.textLabel.textColor = [UIColor whiteColor];
    //cell.detailTextLabel.textColor = [UIColor grayColor];
    //cell.textLabel.highlightedTextColor = self.effectsTableView.tintColor;

    return cell;
}


问题是[[self.effectsTableView cellForRowAtIndexPath:indexPath] .textLabel文本]在didSelectRowAtIndexPath上返回nil。问题是什么?

最佳答案

您不应该以这种方式使用单元格。只能将数据放入单元格中以便可以显示它。您永远不要使用视图来存储数据,然后在以后检索它。

在您的代码中,您正在执行...

Effect *effectCellEffect = [self.effectsArray objectAtIndex:indexPath.row];
NSString *effectCellText = effectCellEffect.name;

cell.textLabel.text = effectCellText;


所以在didSelectRow中做同样的事情...

-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
    Effect *effectCellEffect = [self.effectsArray objectAtIndex:indexPath.row];
    self.currSelectedRowTitle = effectCellEffect.name;
    [self performSegueWithIdentifier:@"PushedByTableView" sender:self];
}


然后,您可以在两个地方做相同的事情时通过重构将其提取到函数中,但我将由您自己决定。

关于ios - [[self.effectsTableView cellForRowAtIndexPath:indexPath] .textLabel文本]在didSelectRowAtIndexPath上返回nil,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/22906134/

10-13 03:50