Passing data from one view controller to another

前端 未结 3 421
忘掉有多难
忘掉有多难 2021-01-28 06:37

I\'m parsing data with json, and i want to pass model_id to ActiveSubViewController / id_model. What am i doing wrong?

//  ViewController.swift
//
//  Copyright          


        
3条回答
  •  悲哀的现实
    2021-01-28 07:16

    Make string variable in your AppDelegate Like

    var Model_id = String()
    

    and where you are getting value of username and userid sends its value to AppDelegate. make AppDelgate object like below and same in destinationViewController

    let appDelegate = UIApplication.shared.delegate as! AppDelegate
    

    to pass value to app delegate variable

    self.appDelegate. Model_id = "your Value"
    

    and get your values wherever you want to fetch like below

    let appDelegate = UIApplication.shared.delegate as! AppDelegate
    let  string = appDelegate. Model_id as! String
    

提交回复
热议问题