以编程方式在 UITableView 中自定义单元格?

发布于 2024-11-08 23:08:28 字数 134 浏览 4 评论 0原文

我有一个 UITableView,它加载了来自 MutableArray 的数据。问题是,在这个数组中,我有许多不同的属性,因此我想以编程方式将这些属性输入到自定义单元格中。

另外,我想在单元格中包含一个滑块,因此需要在那里进行某种添加。

I have a UITableView which gets loaded with data from a MutableArray. The thing is, within this array I have many different attributes, therefore I would like to enter these attributes into a custom cell programmatically.

Also I would like to include a Slider within the Cell so there will need to be some sort of addition there.

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

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

发布评论

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

评论(1

风向决定发型 2024-11-15 23:08:28

你说你看过教程,但是你有没有检查过“UITableView施工、绘图和管理(重温)”帖子 http://cocoawithlove.com -这几乎涵盖了完整的自定义 UITableViewCell 范围,包括从 NIB 加载自定义视图。

无论如何,一种可能的方法是创建您自己的自定义单元格,该单元格消耗 UITableViewCell 并简单地添加一个 UISlider 属性,然后在 - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *) 中设置该属性useIdentifier 方法,并通过 [[self contentView] addSubview:yourUISlider]; 等将其添加为子视图。

但是,我很想仔细看看 http://cocoawithlove.com 文章,并将提供的项目下载为这将向您显示完整的可用选项。

You say you've looked at tutorials, but have you checked out the "UITableView construction, drawing and management (revisited)" post on http://cocoawithlove.com - this pretty much covers the full custom UITableViewCell gamut, including loading a custom view from a NIB.

Irrespective, one potential approach is to create your own custom cell that expends the UITableViewCell and simply add a UISlider property which you'd then set up within the - (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier method and add it as a sub view via [[self contentView] addSubview:yourUISlider];, etc.

However, I'd be tempted to have a good look at the http://cocoawithlove.com article, and download the provided project as this will show you the available options in full.

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