我的问题非常简单,但我无法弄清楚如何做到这一点。我有一个静态单元格和一个按钮。
我有一个IBAction
挂钩按钮。
如何访问IBAction
?
我试过了:
let cell = tableView.cellForRowAtIndexPath(NSIndexPath(forRow: 2, inSection: 1) as myStaticCell
cell.height = 200
但是由于我不明原因,它将两条线都作为单个表达式。
答案 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