iOS为uitableviewcell添加自定义属性

发布于 2025-01-03 04:21:28 字数 332 浏览 0 评论 0原文

我正在尝试在 xcode 中的 IOS 应用程序中实现此类事情。

网页:

基本上,我有一个 uitableviewcell,我想添加一个可以获取和设置的自定义属性。

我知道我可以使用 detailTextLabel.text 并使文本透明,但我真正需要的是我可以设置和获取的幕后内容,例如 data-foo 在 html 中,但在带有 uiTableViewCell 的 xcode/ios 中。

我怎样才能实现这个目标?

I am trying to achieve this sort of thing in my IOS app in xcode.

Html:
<div data-foo="foobar"></div>

Basically, I have a uitableviewcell, and I want to add a custom attribute that I can get and set.

I know I can use the detailTextLabel.text and make the text transparent, but what I really need is something behind the scenes that I can set and get, like the data-foo in html, but in xcode/ios with a uiTableViewCell.

How can I achieve this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我家小可爱 2025-01-10 04:21:28

也许您可以创建一个名为 MyTableCell 的类,并在其中创建一些对象。在故事板中,将 TableViewCell 设置为 MyTableViewCell。然后当你创建一个TableViewCell时

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

MyTableCell *cell = (MyTableCell *)[tableView dequeueReusableCellWithIdentifier:@"MyTableCell"];

//configure cell
//make any changes to the TableViewCell class with cell.myObject    

return cell;
}

Perhaps you could make a class called MyTableCell, and create some objects there. In the storyboard, set the TableViewCell to MyTableViewCell. Then when you create a TableViewCell

- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{

MyTableCell *cell = (MyTableCell *)[tableView dequeueReusableCellWithIdentifier:@"MyTableCell"];

//configure cell
//make any changes to the TableViewCell class with cell.myObject    

return cell;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文