简体   繁体   中英

When I navigate to the view controller containing ARSCNView a blank screen appears

When I navigate to the view controller containing ARSCNView a blank screen appears instead of camera view, with all other UI Elements visible partially (transparent)

This is my code for navigating to the next ViewController

let

secondViewController = storyboard?.instantiateViewController(withIdentifier: "SecondViewController") as! SecondViewController
self.present(secondViewController, animated: true, completion: nil)

Since ARSCNView uses camera you have to add permission request in plist file. Add "Privacy - Camera Usage Description" in order to be able to use camera.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM