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 text]在didSelectRowAtIndexPath上返回nil。有什么问题?
答案 0 :(得分:1)
你不应该以这种方式使用细胞。数据应该只被放入一个单元格,以便它可以显示它。您永远不应该使用视图来存储数据,然后再检索它。
在您的代码中,您正在做...
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];
}
然后你可以通过重构将它提取到一个函数中,因为你在两个地方做同样的事情,但我会把它留给你。
答案 1 :(得分:0)
-(void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableviewCell *cell=(UITableviewCell *)[self.effectsTableView cellForRowAtIndexPath:indexPath];
self.currSelectedRowTitle = [cell.textLabel text];
[self performSegueWithIdentifier:@"PushedByTableView" sender:self];
}
这可能有用......