5
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

UITableViewCellをタップして削除ボタンを表示させる

Posted at

cellOnTapShowDelete.gif

UITableViewのリストを削除するケースで、UITableViewCellをタップして削除ボタンを表示させるやり方。

本来であれば、iOSの作法にのっとってナビゲーションバーに編集ボタンを置いて編集モードにさせたり、Cellを左にスワイプした時に削除ボタンを表示させるのが普通だけど、それらのUIが他の機能とバッティングしていたため、このような対応が必要になった。

MGSwipeTableCellを使用

UITableViewCellをスワイプした時に表示させる削除や編集ボタンのアニメーションやイベントをカスタマイズできるライブラリMGSwipeTableCell を使った。
もともとスワイプさせてボタンを表示させることを目的としたライブラリだが、スワイプの操作を無効にすることと、ボタンを表示させるメソッドが用意されているので、その2つのAPIを利用して、今回の仕様に対応させた。
MGSwipeTableCell cocoapodsからインストールできる。

以下は、ストーリーボードで実装した場合。

ストーリーボードの設定

Cellをタップした時にUITableViewdidSelectRowAtIndexPathが呼ばれるようにUITableView SelectionSingle Selectionに設定する。

Main_storyboard_—_Edited2.png

UITableViewCellのClassにMGSwipeTableCellを指定

Main_storyboard_—_Edited.png

削除ボタンを設定

cellForRowAtIndexPathで削除ボタンを設定する。
下記サンプルは右ボタンに削除ボタンを1つだけ設定しているが、複数のボタンを配置したり、セルの左側にボタンを設定することも可能。

override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
  let reuseIdentifier = "programmaticCell"
  var cell = tableView.dequeueReusableCellWithIdentifier(reuseIdentifier) as! MGSwipeTableCell!
  if cell == nil
  {
    cell = MGSwipeTableCell(style: UITableViewCellStyle.Subtitle, reuseIdentifier: reuseIdentifier)
  }
  cell.textLabel!.text = "Title"
  cell.delegate = self
  
  // セルの右に表示する削除ボタンを設定
  cell.rightButtons = [MGSwipeButton(title: "Delete", backgroundColor: UIColor.redColor())]
  cell.rightSwipeSettings.transition = MGSwipeTransition.Static
  
  return cell
}

Cellがタップされた時の処理

didSelectRowAtIndexPathで削除ボタンを出現させる。

//Cellを選択した時
override func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
  let cell = tableView.cellForRowAtIndexPath(indexPath) as! MGSwipeTableCell!
  //削除ボタンを表示
  cell.showSwipe(MGSwipeDirection.RightToLeft, animated: true)
}

削除処理

MGSwipeTableCellDelegateでスワイプでのボタン表示を無効にし、削除ボタンが押された時の削除処理を実装する。
削除ボタンが押された時はtappedButtonAtIndexでボタンのIndex。directionで左右の位置が取得できる。
サンプルはCellの右側から出現した1つ目のボタンを削除ボタンとして判定している。

extension tableViewController:MGSwipeTableCellDelegate{
  func swipeTableCell(cell: MGSwipeTableCell!, canSwipe direction: MGSwipeDirection) -> Bool {
    //Swipe操作を無効
    return false
  }
  func swipeTableCell(cell: MGSwipeTableCell!, tappedButtonAtIndex index: Int, direction: MGSwipeDirection, fromExpansion: Bool) -> Bool {
    //削除ボタンを選択した時
    if direction == .RightToLeft && index == 0 {
      // 削除処理
      // ・・・
      return false
    }
    return true
  }
}

参考

MGSwipeTableCell
UITableViewCell show delete button on tap

5
8
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
5
8

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?