我有以下代码用于捕获数组中的项目:
int value = (int)indexPath.row;
value--;
titleLabel.text = textLabelsSection0[value];
考虑到我的数组textLabelsSection0
有8个元素而变量value
存储数字3,但问题是不存储数字3的变量值,他存储数字 18446744073709551615 ,导致此错误:
index 18446744073709551615 beyond bounds [0 .. 8]'
我该如何解决这个问题?