0
J'ai un problème avec indexPath.row, lorsque je tente d'accéder à cette variable plantage de mon application et je reçois pas d'erreur sur la console :(crash lors de l'utilisation indexPath.row dans un modalViewController
le code est présent :.
- (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
}
et je l'utilise dans un ModalViewController
Merci beaucoup: D – patrick