自动单元格选择UITableView

时间:2011-10-05 20:11:29

标签: ios xcode uitableview

我的UITableView通过PopOverViewController打开,所以我怎样才能在app加载后自动加载其中一个单元格,

MainViewController上的单元格选择过程

- (void)setDetailItem:(id)newDetailItem {

    if (detailItem != newDetailItem) {
        [detailItem release];
        detailItem = [newDetailItem retain];

        //---update the view---
        label.text = [detailItem description];
    }

}

并在TableViewController中选择单元格:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath
{

    myAppDelegate *appDelegate = 
    [[UIApplication sharedApplication] delegate];
    appDelegate.viewController.detailItem = [list objectAtIndex:indexPath.row];  

}

我在TableViewController中使用此代码但不起作用!这意味着按下popOver按钮后代码只需突出显示单元格!

 [myTableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:0];

我在上面的代码中使用了不同的方法,例如viewDidAppearviewWillAppeardidSelectRowAtIndexPath以及......

谢谢

1 个答案:

答案 0 :(得分:9)

当您致电selectRowAtIndexPath:animated:scrollPosition:时,tableView:didSelectRowAtIndexPath:在代表上被 调用。

来自selectRowAtIndexPath:animated:scrollPosition:参考:

  

调用此方法不会导致委托接收   tableView:willSelectRowAtIndexPath:或   tableView:didSelectRowAtIndexPath:message,也不会发送   向观察者发出UITableViewSelectionDidChangeNotification通知。

所以,不要只是调用selectRowAtIndexPath:animated:scrollPosition:

 [myTableView selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:0];

您可以手动调用委托方法:

NSIndexPath *indexPath = [NSIndexPath indexPathForRow:0 inSection:0];

if ([myTableView.delegate respondsToSelector:@selector(tableView:willSelectRowAtIndexPath:)]) {
    [myTableView.delegate tableView:self.tableView willSelectRowAtIndexPath:indexPath];
}

[myTableView selectRowAtIndexPath:indexPath animated:YES scrollPosition: UITableViewScrollPositionNone];    

if ([myTableView.delegate respondsToSelector:@selector(tableView:didSelectRowAtIndexPath:)]) {
    [myTableView.delegate tableView:self.tableView didSelectRowAtIndexPath:indexPath];
}