将参数传递给自定义 UITableViewCell [重复]
Posted
技术标签:
【中文标题】将参数传递给自定义 UITableViewCell [重复]【英文标题】:Passing parameters to custom UITableViewCell [duplicate] 【发布时间】:2014-11-16 00:40:28 【问题描述】:我正在从 TableViewController 中的 Nib 注册自定义单元格
tableView.registerNib(UINib(nibName: "CustomCell", bundle: nil), forCellReuseIdentifier: "Cell")
但我的 CustomCell 具有需要访问 tableView 本身和 fetchedResultsController 的 IBAction 方法。如何以干净的方式将这些参数传递给 CustomCell?
设置这些东西:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)
return tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as UITableViewCell
对我来说似乎不是干净的方式..?
【问题讨论】:
你是对的,愚蠢的我:-( 【参考方案1】:单元格真的不应该知道关于表格视图或 fetchedResultsController 的任何信息。一种方法是在 cellForRowAtIndexPath 中添加您的操作,并使控制器成为目标。
另一种选择是在自定义单元类中包含操作方法,并让它们调用您在单元类中创建的委托协议方法。让控制器在 cellForRowAtIndexPath 中将自己设置为委托。
【讨论】:
它是如何工作的..?我什么都不懂。【参考方案2】:您可以选择负责自定义单元格 IBAction 示例的类
IBAction Func enterKeyButton (sender: AnyObject)
println(sender)
并在tableview中实现该方法,这就是导致medot Custom Cell的方式
func tableView (tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath)
let cell = tableView.dequeueReusableCellWithIdentifier ("Cell", forIndexPath: indexPath) as UITableViewCell
cell.enterKeyButton ("hello")
return cell
希望对你有所帮助!
【讨论】:
以上是关于将参数传递给自定义 UITableViewCell [重复]的主要内容,如果未能解决你的问题,请参考以下文章
Sklearn Pipeline:将参数传递给自定义变压器?