我有一個表,當我選擇我行執行此命令:獲取陣列的關鍵與indexPath.row
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath{
InfoClienteViewController *infoViewController = [[InfoClienteViewController alloc] init];
[self.navigationController pushViewController:infoViewController animated:YES];
[infoViewController setIdt:idt[indexPath.row]];
NSLog(@"You Select -> %zd",idt[indexPath.row]);
}
在我的數組(IDT)我有這樣的價值觀:
- [0] - > 2
- [1] - > 3
- [2] - > 4
所以,當我點擊我桌子上的第一行(現在indexPath.row是[0]),NSLog顯示數字2,但返回數字4451524096,爲什麼?我該如何解決它?