以编程方式在 UITableView 中自定义单元格?
我有一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你说你看过教程,但是你有没有检查过“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.