I've a problem with indexPath.row, when I try to access this variable my app crashes and I get no errors on the console :(

the code is this:

- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    // Navigation logic may go here. Create and push another view controller.
    NSLog(@"%@", indexPath); //works fine
    NSLog(@"%@", indexPath.row); //crash
}

and I'm using it inside a ModalViewController.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

You have to use

NSLog(@"%d", indexPath.row);

instead of

NSLog(@"%@", indexPath.row);

This is because, indexpath.row is an integer and you have to use the %d .

link|improve this answer
Thank you very much :D – patrick Oct 11 '10 at 8:19
feedback

Your Answer

 
or
required, but never shown

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