i have normal application flow and at one place i have to open immesive space for image seen 360 view but currently when ever i run application it start with immersive space my app normal flow is not start.What the isssue here?
Hello @Chirag_kody5020,
It sounds like you have UIApplicationPreferredDefaultSceneSessionRole
set to UISceneSessionRoleImmersiveSpaceApplication
in your Info.plist
. This will use your immersive space as the initial scene of your application. If you'd like this to be a WindowGroup
, set this to UIWindowSceneSessionRoleApplication
.
Let me know if that helps,
Michael