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.

任意のUITableViewCell&UICollectionViewCellからCell情報を持って異なるStoryboardに画面遷移

Last updated at Posted at 2020-03-01

備忘録兼、もし同じことで困っている方がいらっしゃたらその一助になればと思います。

前提

UITableViewCellやUICollectionViewCellに構造体を表示していて、
そしてその構造体のプロパティを持って別の画面に遷移したい!
使うメソッドは以下の二つです!


func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) 

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath)

そして扱う構造体は以下の通りです。

struct User {
   var name: String!
   var money: Int!

   init(name: String, money: Int) {

   self.name = name
   self.money = money

  }
}

そして扱う

UITableViewやUICollectionView

をそれぞれ

tableView, collectionView

として、Cell に表示する構造体が格納されている配列を

list: [User]!

とします!
そして、(前置きが長くてすみません💦)
遷移先のStoryboardの設定ですが、

「xxx.storyboard」にViewControllerを置いて、ViewControllerのswiftFileを作るのを忘れないでください!

そして一番忘れないで欲しいのが、ViewcontrollerにNavigationControllerを付けて、このNavigationControllerに「is Initial View Controller」にチェックを付けて、これに「StoryboradID」をつけるのを忘れないでください!

ここではtableViewからの遷移先を
Next1.storyboard の Next1ViewController で制御するViewControllerとそのNavigationControllerの「StoryboradID」を navigation1 とし

collectionViewからの遷移先を
Next2.storyboard の Next2ViewController で制御するViewControllerとそのNavigationControllerの「StoryboradID」を navigation2 とします!

そして、Next1ViewControllerとNext2ViewControllerには

class Next1ViewController {
   var argString1: String!
   var argInt1: Int!
}

class Next2ViewController {
   var argString2: String!
   var argInt2: Int!
}

と変数が置かれていることにします!
前置きが長くなりました💦それでは行ってみましょう!

またここから、tableViewとcollectionViewが同じファイル内にあるが如く(見やすくするため)swift文を書いていきます。

実際に書くときはご自分の裁量でお願いします!

var list: [User]!

var tableView: UITableView!
var collectionView: UICollectionView!

//いろいろ省略します。

func collectionView(_ collectionView: UICollectionView, didSelectItemAt indexPath: IndexPath) {
  
        let x = indexPath.row
        let y = list[x]
        let storyboard: UIStoryboard = UIStoryboard(name: "Next1", bundle: nil)
        let navigationController = storyboard.instantiateViewController(withIdentifier: "navigation1") as! UINavigationController
        let vc = navigationController.topViewController as! Next1ViewController
         vc.argString1 = y.name
         vc.argInt1 = y.money
        self.present(navigationController, animated: true, completion: nil)
    }

func tableView(tableView: UITableView, didSelectRowAtIndexPath indexPath: NSIndexPath) {
        let x = self.tableView.indexPathForSelectedRow
        let y = x?.row
        let z = list[y!]
        let storyboard: UIStoryboard = UIStoryboard(name: "Next2", bundle: nil)
        let navigationController = storyboard.instantiateViewController(withIdentifier: "navigation2") as! UINavigationController
        let vc = navigationController.topViewController as! Next2ViewController
         vc.argString2 = z.name
         vc.argInt2 = z.money
        self.present(navigationController, animated: true, completion: nil)
}


そして、余談なのですが遷移させた情報を、Next1ViewController、Next2ViewControllerのUIで表示したい場合は別の変数に入れ直さないとダメらしいです、、、

つまり、遷移させた情報をそのままUIで表示できないということ。

なので私は、

class Next1ViewController {

   var argString1: String!
   var argInt1: Int!

   @IBOutlet weak var label: UILabel!

   var DamyInt1: Int!

   override func viewDidLoad() {
        super.viewDidLoad()
       self.DamyInt1 = argInt1
       self.label.text = DamyInt1
    }

}

というように他の変数を間に入れてUIを初期化しています。
もし、間違い等があればご指摘お願いいたします。

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?