I have a tableView(first view).. and the detailView(next view) containing the details of that table. now on selecting a particular row from the first view i want to pass the index number of selected row from didSelectRowAtIndexPath of first view to the initWithNibName of the next view. Please help.. if possible give example thru code.. thnx!

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You can implement an own method in your view controller you want to instantiate and call that method instead of -initWithNibName:bundle:. In that method, you call

// in your view controller
- (id)initWithNibName:(NSString *)nibName bundle:(NSBundle *)nibBundle index:(NSInteger)index {
    [self initWithNibName:nibName bundle:nibBundle];
    // do your stuff with the index here
}

// in your table view delegate
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    DetailView *vc = [[DetailView alloc] initWithNibName:@"YourNibName" bundle:nil index:indexPath.row];
    [self.navigationController pushViewController:vc animated:YES];
    [vc release];
}

And fix your accept rate or you will not get much more help here.

link|improve this answer
thanks that is what was needed. :) – Zaraki Kenpachi Feb 10 '11 at 11:47
Please accept the answer then. Click the checkmark under the answer score. – Björn Marschollek Feb 10 '11 at 13:27
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.