gpt4 book ai didi

iPhone:cellForRowAtIndexPath - 如何调用它?

转载 作者:行者123 更新时间:2023-12-03 21:06:11 27 4
gpt4 key购买 nike

假设 self.tableView 是我创建的 UITableView 实例变量,任何人都可以解释这两个语句之间的区别吗?两者在语法上都是正确的,而且我认为两者都会做同样的事情:在 self.tableView 处返回该索引路径的一个单元格。

NSIndexPath myIndexPath = BLAH BLAH...

UITableViewCell *cell = [self tableView:self.tableView cellForRowAtIndexPath:myIndexPath];
UITableViewCell *cell = [self.tableView cellForRowAtIndexPath:myIndexPath];

最佳答案

第一个将 tableView:cellForRowAtIndexPath: 消息发送到 TableView 的数据源。

第二个将 cellForRowAtIndexPath: 消息发送到 TableView 本身。反过来, TableView 将询问单元格的数据源。

关于iPhone:cellForRowAtIndexPath - 如何调用它?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6852630/

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