Post

Replies

Boosts

Views

Activity

Reply to Show image in vision pro app
Drag and drop an image into Assets.xcassets in your project. I used "SoccerBall.png". Then call it in ContentView like this: (Note that you should not include the file extension in Image. Maybe that's why yours isn't working. Try using Image("IMG_3984")) import SwiftUI import RealityKit import RealityKitContent struct ContentView: View { var body: some View { VStack { //Model3D(named: "Scene", bundle: realityKitContentBundle) // .padding(.bottom, 50) Text("Hello, world!") Image("SoccerBall").resizable().scaledToFit() } .padding() } } #Preview(windowStyle: .automatic) { ContentView() }
Feb ’24
Reply to How to revert to non beta iOS 17?
I can't remember but when I did this, I had to go to software update and reinstall the non-beta version of iOS. Once you remove the beta profile, go to Software update and it should let you 'update' to the non-beta version. Sorry, it's been a while since I did this. I can't remember exact steps.
Feb ’24