Post

Replies

Boosts

Views

Activity

Reply to Symbol not found: _$sSo22CLLocationCoordinate2DVSE12CoreLocationMc when building for visionOS 2.5 with Xcode 16.3
Mine is fixed. It seems to be because apple suddenly generated their own version of codable for CLLocationCoordinate2D and this was conflicting. Examining CLLocationCoordinate2D showed that it was now marked as codable in the documentation. I removed my codable extension but it still didn't like it. but when I updated Xcode to the latest release version it went back to being non codable and everything is fine again.
May ’25
Reply to PlaneDetectionProvider on VisionOS seems to limit detection to planes less than5 m from world origin.
Well that's encouraging. I do have a reference to the ARKitSession. I am also running the world tracking provider at the same time so I can track the head. I wonder if that's changing things? I'm also running the 2.0 beta. This is how I originate the session try? await session.run([worldInfo, planeData]) but everything I get back in .task { for await update in planeData.anchorUpdates { } } seems to be filtered within 5 meters of the origin.
Topic: Spatial Computing SubTopic: ARKit Tags:
Oct ’24
Reply to Is it possible to keep the arSession alive after stopping roomCaptureSession
I have temporarily fixed this by saving a world map before I stop the roomScan session and then starting a new ARSession and immediately loading that world up again. It's clumsy but it works. I get a new arSession which fairly quickly snaps to the old origin. It would be nice to be able to just turn the room scanning off and keep the same arsession. Users will not understand why there's a jump and there's a chance they will lose it.
Topic: App & System Services SubTopic: General Tags:
Jul ’22
Reply to How to use vibe tools in Xcode
I had to restart my machine and then the list of models showed up.
Replies
Boosts
Views
Activity
Jun ’25
Reply to How to use vibe tools in Xcode
I followed this but I get a message saying no model selected.
Replies
Boosts
Views
Activity
Jun ’25
Reply to Symbol not found: _$sSo22CLLocationCoordinate2DVSE12CoreLocationMc when building for visionOS 2.5 with Xcode 16.3
Mine is fixed. It seems to be because apple suddenly generated their own version of codable for CLLocationCoordinate2D and this was conflicting. Examining CLLocationCoordinate2D showed that it was now marked as codable in the documentation. I removed my codable extension but it still didn't like it. but when I updated Xcode to the latest release version it went back to being non codable and everything is fine again.
Replies
Boosts
Views
Activity
May ’25
Reply to Symbol not found: _$sSo22CLLocationCoordinate2DVSE12CoreLocationMc when building for visionOS 2.5 with Xcode 16.3
it's just started for me too. Did you ever find a solution?
Replies
Boosts
Views
Activity
May ’25
Reply to PlaneDetectionProvider on VisionOS seems to limit detection to planes less than5 m from world origin.
I made a simple example and it seemed to be working fine. So I have worked my way back through rewritten everything and it's working again. I'm not sure why the planes were not being added after the initial flush, but it seems to work fine now. Thank you for your help. Much appreciated.
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to PlaneDetectionProvider on VisionOS seems to limit detection to planes less than5 m from world origin.
Well that's encouraging. I do have a reference to the ARKitSession. I am also running the world tracking provider at the same time so I can track the head. I wonder if that's changing things? I'm also running the 2.0 beta. This is how I originate the session try? await session.run([worldInfo, planeData]) but everything I get back in .task { for await update in planeData.anchorUpdates { } } seems to be filtered within 5 meters of the origin.
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to How to get notified on CKError.quotaExceeded
Any luck figuring this out? It seems very odd that there's no simple way to get a notification.
Replies
Boosts
Views
Activity
Jul ’24
Reply to Is it possible to implement a Billboard System in a volumetric window?
Did you ever get to the bottom of this? I'd really like to know the position of the device when in a volumetric window. It seems like this is not possible.
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Mar ’24
Reply to New AVPointCloudData assert in iPadOS 17.0 (21A5326a)
I am too. Did you get anywhere with it?
Topic: Spatial Computing SubTopic: ARKit Tags:
Replies
Boosts
Views
Activity
Sep ’23
Reply to iPhone 14 Pro Max reporting incorrect videoFieldOfView
I wonder if this had anything to do with the Instagram camera grinding on these devices.
Replies
Boosts
Views
Activity
Sep ’22
Reply to iPhone 14 Pro Max reporting incorrect videoFieldOfView
I just downloaded the new 16.1 beta and it appears to be fixed there. They don't seem to ever give you both fovs for the cropped and full frame format, but at least now the default is the wide angle.
Replies
Boosts
Views
Activity
Sep ’22
Reply to Roomplan struggles with windows and doors above each other
This has now been fixed in beta 4.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’22
Reply to Is it possible to keep the arSession alive after stopping roomCaptureSession
I have temporarily fixed this by saving a world map before I stop the roomScan session and then starting a new ARSession and immediately loading that world up again. It's clumsy but it works. I get a new arSession which fairly quickly snaps to the old origin. It would be nice to be able to just turn the room scanning off and keep the same arsession. Users will not understand why there's a jump and there's a chance they will lose it.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’22
Reply to RoomCapture Configuration - request for more config options
I would also like to be able to keep the arsession alive but turn off the processor-intensive roomcapture session. Maybe this could be done with a configuration? That way we can do some basic editing of the room when roomcapture is complete.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’22
Reply to limiting device orientations in IOS16
I figured it out by trial and error. My problem was that I had a navigationcontroller that was in the way. I had to make sure that navigationControllerSupportedInterfaceOrientations was updated too.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’22