所以我有2個VC的。在發送VC時,我想將數據發送到接收VC。在製作UIButton時,我在其他項目中通過PrepareForSegue完成了這項工作。這工作完美。 但是現在我創建了一個函數,當條件滿足時它將跳轉到VC。功能如下:PrepareForSegue不起作用的功能,將跳轉到不同的視圖控制器
let vc = self.storyboard?.instantiateViewControllerWithIdentifier("Resultsviewcontroller") as! Resultsviewcontroller
let navigationController = UINavigationController(rootViewController: vc)
self.presentViewController(navigationController, animated: false, completion: nil)
它會跳轉到VC,但與我在PrepareForSegue函數聲明的數據。如何使用PrepareForSegue等函數發送數據?
另外,當跳到接收VC時,它在頂部有一條白線。看起來狀態欄應該在那裏,但在兩個VC中,我將其設置爲「無」。我怎樣才能刪除那條白線?
不錯,你幫我了。這是答案:dispatch_async(dispatch_get_main_queue()){ [無主自我]在 self.performSegueWithIdentifier(「Test」,sender:self) }這實際上解決了我的另一個問題! – Nahaku