搜尋

首頁  >  問答  >  主體

ios - swift 进行属性传值,穿过去的值为空.怎么解决?

第一个页面
func pushView(){

    
    let secondVC = secondViewController()
    
    secondVC.titleGo = "百度一下"

    secondVC.address = "https://www.baidu.com"
    
    
    self.performSegue(withIdentifier: "secondViewController", sender: self)
    
    print("======")
    
}

第二个:


var address = String()

var titleGo = String()

var webView = WKWebView()

override func viewDidLoad() {
    
    
    itemBar.title = titleGo
    
    print("======+\(titleGo)")
    
    label.title = address
    
    print("++++++=\(address)")
    }
迷茫迷茫2771 天前343

全部回覆(2)我來回復

  • PHP中文网

    PHP中文网2017-04-18 09:50:32

    雷雷

    回覆
    0
  • 高洛峰

    高洛峰2017-04-18 09:50:32

    程式碼沒問題的話 就是位置問題了吧 這個頁面的返回按鈕需要在上個頁面來設定

    回覆
    0
  • 取消回覆