按下按钮时访问静态单元格

时间:2016-07-18 15:28:24

标签: swift uitableview

我的问题非常简单,但我无法弄清楚如何做到这一点。我有一个静态单元格和一个按钮。

我有一个IBAction挂钩按钮。

如何访问IBAction

中的单元格

我试过了:

let cell = tableView.cellForRowAtIndexPath(NSIndexPath(forRow: 2, inSection: 1) as myStaticCell
    cell.height = 200

但是由于我不明原因,它将两条线都作为单个表达式。

1 个答案:

答案 0 :(得分:1)

您在方法调用中缺少右括号。在)关键字之前添加第二个as。您还需要使用as!

您需要更改:

let cell = tableView.cellForRowAtIndexPath(NSIndexPath(forRow: 2, inSection: 1) as myStaticCell

对此:

let cell = tableView.cellForRowAtIndexPath(NSIndexPath(forRow: 2, inSection: 1)) as! myStaticCell