1
A
回答
1
您需要使用下列之一來創建你的觸摸位置的新UIViewController
基地:
手動創建它從故事板
if let controller = storyboard.instantiateViewControllerWithIdentifier("identifier") as? SubclassViewController { //prepare your view controller here }
實例化控制器
將segue執行到新的視圖控制呃
performSegueWithIdentifier("segueIdentifier")
內
prepareForSegue:
if let controller = segue.destinationViewController as? SubclassViewController { //prepare your controller here }
let controller = SubclassViewController()
//prepare your view controller here
取決於你的應用程序正在做然後準備您的視圖控制器,你可以把你的新視圖控制器或手動目前它
相關問題
- 1. 快速打開新的UIViewController
- 2. 用Swift中的新數據刷新UIViewController
- 3. 單擊UITableViewCell時打開新的UIViewController?
- 4. 開放應用程序打開的UIViewController
- 5. Swift,使用UIViewController作爲LaunchScreen
- 6. Swift - 從幻燈片菜單中打開UIViewController
- 7. 如何使用swift打開新的WebView推送通知
- 8. 點擊UITabbarItem後打開UIViewController
- 9. 重新使用UIViewController
- 10. 使用NSURL打開Safari設置Swift
- 11. 如何使用標註按鈕打開新的uiviewcontroller。 (斯威夫特)
- 12. SWIFT uiviewcontroller init
- 13. 如何打開我在UIWebView,在新的UIViewController中的MP3鏈接?
- 14. iOS - 有一個很好的popToRootViewController並打開一個新的UIViewController
- 15. 如何在uiviewcontroller中使用協議,swift
- 16. UIBarButtonSystemItemPlay打開新的UIViewController作爲按鈕播放audiofile
- 17. 從UIStoryBoard中的UIAlertView打開UIViewController
- 18. Swift UIViewController添加UISearchController
- 19. 如何使用Swift中的AppDelegate從自己的ViewController打開一個新窗口
- 20. 獲取以前的UIViewController swift
- 21. UIViewController中的Swift動態tableview
- 22. 如何從UISplitViewController(左側tableview)打開UIViewcontroller?
- 23. 按下按鈕時UIViewcontroller無法打開
- 24. iOS UIViewController麻煩打開另一個uwwcontoller
- 25. 打開UIViewController,不顯示UINavigationController導航欄
- 26. Monotouch.Dialog RootElement打開UIViewController並傳入數據
- 27. 當點擊TTTabIcon時打開UIViewController
- 28. 從UINavigationController開始一個新的UIViewController
- 29. 使用JButton打開一個新的JFrame
- 30. 使用AppleScript打開新的Finder窗口
謝謝你這麼多:) – sau123