iOS为uitableviewcell添加自定义属性
我正在尝试在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许您可以创建一个名为 MyTableCell 的类,并在其中创建一些对象。在故事板中,将 TableViewCell 设置为 MyTableViewCell。然后当你创建一个TableViewCell时
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