gpt4 book ai didi

ios - 访问 NSArray/UITableView 中的第一个对象

转载 作者:行者123 更新时间:2023-11-28 18:43:13 25 4
gpt4 key购买 nike

哪个数字是 NSArray 中的第一个对象?我最初认为它是 0,但我可能错了。

还有,UITableView 中的第一个单元格是哪个数字?我以为第一个 indexpath.row 是 1 但我也可能错了?

有没有任何人可以指向我的链接,Apple 在哪里解释了这一点?

谢谢!

-(BOOL) textFieldShouldReturn:(UITextField *)thetextField {

CustomCell *cell = (CustomCell*)[thetextField superview];
NSIndexPath *indexPath = [thetableView indexPathForCell:cell];
NSLog(@"%i", indexPath.row);

最佳答案

索引 0 表示 NSArray 中的第一个元素。

对于 UITableView,您在索引路径中同时具有行号和节号。所以第一节的第一个元素是 indexPath.row = 0indexPath.section = 0 时。

关于ios - 访问 NSArray/UITableView 中的第一个对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8676509/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com