0

UITableViewRowAction を使用して iOS Swift 2 でテーブルを編集しています。アクションボタンがポップアップした後にアクションを選択した場合、セル全体(ボタンのポップアップではなく)の現在の背景の色を変更したい。dequeueReusableCellWithIdentifierを使用してアクセスしようとしまし たが、何も起こりません。

let share = UITableViewRowAction(style: .Normal, title: "Showed Up?") { (action, indexPath) in

let cell = tableView.dequeueReusableCellWithIdentifier("secondtableCell", forIndexPath: indexPath) 
cell.backgroundColor = UIColor.redColor()

...もちろん、コードは引き続き閉じます。色の変更を除いて、すべてが期待どおりに機能します。

4

1 に答える 1