自定义 UITableView 单元格
实施这个的正确方法是什么?
例如,假设我创建了一个带有按钮的 XIB 文件。假设自定义控制器上的按钮被按下,程序如何知道 UITableView 的哪“行”被按下?每行都有自己的 UITableViewCell 控制器吗?
必须有一种正确的方法来设计它。
What is the Right Way to Implement This?
For example, say I created an XIB file with a button in it. Say a button on that custom controller get pressed, how do the program knows which "row" of the UITableView get pressed? Does each row has their own UITableViewCell Controller?
There has to be one right way to design this.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以按照自定义单元格教程 -
http://cocoawithlove.com/ 2009/04/easy-custom-uitableview-drawing.html
You can follow the tutorial for custom cells -
http://cocoawithlove.com/2009/04/easy-custom-uitableview-drawing.html
您询问的是两种不同的控件(按钮和单元格),但无论如何,两者都有类似的方式与控制器“通信”。通过按钮的标记和单元格的索引,您就足以管理这些控件的使用。
You are asking about two different controls (buttons and cells), but anyway both have a similar way to "communicate" with the controller. With the button's tag and the cell's index, you have enough to be able to manage the use of these controls.