gpt4 book ai didi

c# - 如何使用tableview实例访问tableviewcell

转载 作者:太空宇宙 更新时间:2023-11-03 21:03:17 26 4
gpt4 key购买 nike

我正在尝试通过 tableview 实例更改特定的 tableview 单元格属性。

在 Objective c 中我们可以使用下面的代码来做到这一点

id cell = [self tableView:tableView cellForRowAtIndexPath:indexPath];

Xamarin 中的等效访问方式似乎是不可能的。

我知道我可以在 tableview 实例上调用 reloaddata 方法并在 getcell 中进行更改,但我不想那样做,我想直接编辑而不是触发 reloaddata。

最佳答案

您可以通过以下方式从“某些”索引的 UITableView 获取 UITableViewCell:

var cell = aTableViewInstance.CellAt(NSIndexPath.FromIndex(1));

如果需要,将 cell 转换为您的自定义 UITableViewCell 类型,以访问您可能已添加的任何其他方法/属性。

CellAt(NSIndexPath) : UITableViewCell

Returns the table cell at the specified index path.

关于c# - 如何使用tableview实例访问tableviewcell,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43196447/

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