15

我很简单UITableView,只有一个部分和几行。当用户单击单元格附件按钮(与 连接detailsSegue。我想知道它是哪个单元格行。所以我可以从我的数组中选择正确的对象并将其分配给下一个视图中的变量。

我使用了委托方法tableview:accessoryButtonTappedForRowWithIndexPath:并将 indexPath 值分配给我的私有财产myRow。比在prepareForSegue:sender:方法中我使用我的self.myRow.row值从数组中选择正确的对象。

我的问题是这两种方法似乎以错误的顺序执行。从 NSLog 我可以看到该prepareForSegue:sender:方法首先执行,而我的委托方法正在更改self.myRow它之后的值。

所以prepareForSegue:sender:方法总是将错误的对象传递给下一个视图(之前点击的那个)。

对不起我的英语家伙。提前感谢您的帮助。

-(void)tableView:(UITableView *)tableView accessoryButtonTappedForRowWithIndexPath:(NSIndexPath *)indexPath {
    self.myRow = indexPath;
    NSLog(@"tapped button at row: %i",self.myRow.row); 
}

-(void)prepareForSegue:(UIStoryboardSegue *)segue sender:(id)sender {
    if([segue.identifier isEqualToString:@"addSegue"]) {
        AddViewController *avc = segue.destinationViewController;
        avc.delegate = self;
    }
    else if ([segue.identifier isEqualToString:@"detailsSegue"]) {
        NSLog(@"Segue row: %i",self.myRow.row);
        Annotation *annotation = [self.viewsList objectAtIndex:self.myRow.row];
        NSLog(@"Segue annotation object: %@",annotation.title);
        DetailsViewController *dvc = segue.destinationViewController;
        dvc.wikiKey = annotation.title;
    }
}
4

4 回答 4

42

正如您所发现的,系统在向您发送prepareForSegue:sender:消息之前先向您发送tableview:accessoryButtonTappedForRowWithIndexPath:消息。

但是,当它向您发送prepareForSegue:sender:消息时,sender参数是UITableViewCell包含附件视图。您可以使用它来确定点击了哪一行的辅助按钮:

else if ([segue.identifier isEqualToString:@"detailsSegue"]) {
    NSIndexPath *indexPath = [self.tableView indexPathForCell:sender];
    Annotation *annotation = [self.viewsList objectAtIndex:indexPath.row];
    DetailsViewController *dvc = segue.destinationViewController;
    dvc.wikiKey = annotation.title;
}
于 2012-12-03T19:41:41.080 回答
2

发件人将是附件按钮,对吗?在这种情况下,您应该能够通过超级视图向上找到它的包含单元格,然后获取该单元格的索引路径。我以前用过这样的方法来做第一部分:

+ (UITableViewCell *)findParentCellOfView:(UIView *)view {
  if (view == nil || [view isKindOfClass:[UITableViewCell class]]) {
    return (UITableViewCell *)view;
  }
  return [self findParentCellOfView:[view superview]];
}
于 2012-12-03T19:41:10.673 回答
2

// 我告诉你一个简单、更好、更简单的选择:-

// 解决方案 :- 可以在tableView的这个方法中给附属视图的按钮分配标签

-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
    // set accessory view
    UIButton *oValidHomeAccessryBtn = [UIButton buttonWithType:UIButtonTypeCustom];

    // set target of accessory view button
    [oValidHomeAccessryBtn addTarget:self action:@selector(AccessoryAction:) forControlEvents:UIControlEventTouchUpInside];

    // set tag of accessory view button to the row of table
    oValidHomeAccessryBtn.tag =indexPath.row;

    // set button to accessory view
    cell.accessoryView = oValidHomeAccessryBtn ;
}

// 使你传入选择器的方法并获取标签值,你将获得点击的附件视图的 indexPath

- (void)AccessoryAction:(id)sender
{
    NSLog(@"%d",[sender tag]);
}

这是获取单击附件视图所在行的 indexPat 的最简单方法。

于 2013-10-11T07:30:42.397 回答
-3

您需要做的是segue从委托方法中以编程方式调用。假设您正在使用情节提要,您需要segue在情节提要和委托方法中取消链接:

[self performSegueWithIdentifier: @"IdentifierNameHere" sender: self];
于 2012-12-03T19:18:48.883 回答