Post

Replies

Boosts

Views

Activity

Reply to RealityKit default project centered in screen?
There are two ways. One is to add an empty launch storyboard file... But maybe better, I found out that if you do not want storyboards, you leave the "launch screen file" field in general empty, and modify the plist file (I used a plist from a new SwiftUI project without storyboards... ) you will only need to delete the AppDelegate file and add the @main file as in the SwiftUI projects and it is working. @main struct myApp: App {     var body: some Scene {         WindowGroup {             ContentView()         }     } }
Jun ’21
Reply to App takes forever to launch on Xcode 13 Beta 2 and iOS 15 Beta 2
It did not work for me. I tried multiple times to delete the ~/Library/Developer/Xcode/iOS\ DeviceSupport, restart Xcode. Delete cache, unpair the device and re-pair it. After trying all of the above I deselected Product -> Scheme -> Edit scheme -> Select Run (left column) -> untick Debug executable Not the best solution probably but waiting for Apple to fix this. It seems a bug...
Nov ’21