0
2

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.

Swift TableViewからの画面遷移

Last updated at Posted at 2019-10-19

Tableviewcellでセルごとに処理を変えるにはどうするか。TableViewの各セルがタップされると、UITableViewDelegateProtocolから以下のメソッドが呼ばれる。

qiita.rb
tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {}

そして、TableView上のどのセルがタップされたかは、引数のindexPathによって判別することができる。それによって処理を分岐させます。今回はif indexPath.row == 0として、TableView上の最上位のセルを画面遷移の対象とした。

ezgif.com-resize.gif

具体的なコードは以下としました。

qiita.swift

import UIKit
import FirebaseFirestore

class ProductsVC: UIViewController, ProductCellDelegate {
    
    let data:Array<String> = ["iPhone", "iPad", "iPod", "MacBook", "tv", "WATCH"]


    // Outlets

    @IBOutlet weak var tableView: UITableView!

以下省略
    
qiita.swift
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
        if indexPath.row == 0{
            let targetViewController = self.storyboard!.instantiateViewController(withIdentifier: "ToFirstViewController")
            self.present(targetViewController, animated: true, completion: nil)

かなり時間がかかったのでメモ書きです。

0
2
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
0
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?