如何在代码中使用 UItable 单元中的按钮插座

Posted

技术标签:

【中文标题】如何在代码中使用 UItable 单元中的按钮插座【英文标题】:How to use button outlet from UItable cell in code 【发布时间】:2015-07-22 00:17:35 【问题描述】:

我正在尝试在 UITableViewController 中的每个 UITable 单元格中创建一个按钮。我已经在我的单元格中的情节提要中放置了一个按钮,但是当我尝试在我的 swift 文件中创建一个插座时,我收到一条错误消息,指出“非法配置:从 GroupNamesTable 到 UIButton 的按钮插座无效。插座无法连接到重复的内容。”如何将我的按钮从故事板集成到我的实际 swift 文件中?希望有任何建议。

class GroupNamesTable: UITableViewController 
    @IBOutlet var Buttons: UIButton!
    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell 
        let cell: UITableViewCell = tableView.dequeueReusableCellWithIdentifier(cellidentifier, forIndexPath: indexPath) as! UITableViewCell
        let joinbutton: UIButton = Buttons
        joinbutton.addTarget(self, action: "print", forControlEvents: UIControlEvents.TouchUpInside)
        cell.addSubview(joinbutton)
        return cell
    

【问题讨论】:

【参考方案1】:

我想使用cell.contentView.subview[] 来获取 UIButton。因为您的按钮已经在 Storyboard 中,所以索引是固定的。然后使用addTarget 添加动作。

代码

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell 
    var cell : UITableViewCell = tableView.dequeueReusableCellWithIdentifier("cell") as! UITableViewCell
    var btn : UIButton = cell.contentView.subviews[0] as! UIButton
    btn.addTarget(<#target: AnyObject?#>, action: <#Selector#>, forControlEvents: <#UIControlEvents#>)
    return cell

【讨论】:

如果您能在我的代码中展示这一点,我将不胜感激,因为它似乎不像我刚刚实现的那样工作。 行得通!还有一件事,我只有在点击单元格后才能看到按钮。如何让它自动出现? @Archie 它会自动出现在我面前。 你能告诉我你的 Xcode 设置吗,因为它没有显示给我> 我必须先点击单元格,然后它才会出现。

以上是关于如何在代码中使用 UItable 单元中的按钮插座的主要内容,如果未能解决你的问题,请参考以下文章

Swift uiview 在 uitable 之上

如何使 UIButton 从 UITable 中的选择中播放相应的音频剪辑?

如何将单元格插入 UITableViewController

在 UITable+iphone 中选择特定行时将拇指图像传递给其他 uiview

如何将文本包装在 Iphone 的 UITable 单元格中?

将 UITable 单元连接到不同的故事板?