Post

Replies

Boosts

Views

Activity

Reply to Interactive Surfaces
I think you misunderstood. I am in fact successfully using a RCP3 shader graph to read the frames from my VNC feed and separate them into right and left eye. The issue is that I can't do something like build a web browser (or better yet safari extension) that has similar capabilities because the browser window needs to be a RCP3 surface that I am applying a material to. It's like watching a movie of an app instead of the actual app and so you can't interact with it
Topic: Reality Composer Pro SubTopic:
RealityKit & Reality Composer Pro Q&A
3d
Reply to Guidance Around PCC
That's great info, thanks. And clarification of the language: "Have fewer than 2 million first-time app downloads from any of their apps on the App Store." Is this a per-app number or is it cumulative for all apps? Also, the documentation on the Trends tab in App Store Connect is out of date, I think. Is the Units reflect first time downloads or does it include re-downloads?
Topic: Foundation Models SubTopic:
Foundation Models Q&A
6d
Reply to Using AssistantEntity with existing AppEntities for iOS17+
This sample code exhibits the error I mentioned in my comment: 'extension' macro cannot be attached to extension (extension of 'CJLogAppEntity') import AppIntents import CoreLocation @available(iOS 17.0, *) struct CJLogAppEntity: AppEntity { static var defaultQuery = CJLogEntityQuery() let id: String static let typeDisplayRepresentation: TypeDisplayRepresentation = "Folder" let displayRepresentation: DisplayRepresentation @Property var title: String? @Property var message: AttributedString? @Property var mediaItems: [IntentFile] @Property var entryDate: Date? @Property var location: CLPlacemark? } @AppEntity(schema: .journal.entry) @available(iOS 18.0, *) extension CJLogAppEntity {} struct CJLogEntityQuery: EntityQuery { func entities(for ids: [String]) async throws -> [CJLogAppEntity] { return [CJLogAppEntity]() } func suggestedEntities() async throws -> [CJLogAppEntity] { return [CJLogAppEntity]() } }
Topic: App Intents SubTopic:
App Intents & Siri Q&A
1w
Reply to Vision API
Thanks for the feedback; I think I misunderstood and also misspoke. Yes Vision, as you say, has been available to run on static images, but not on objects in the room; I.e., I can’t scan a barcode or text in the space around me, or see a person’s 3d joints superimposed on them. I think when I saw the announcement about Visual Intelligence, some described it as bringing Vision to the AVP. Does Visual Intelligence on the AVP extend my capabilities as a developer?
Topic: Reality Composer Pro SubTopic:
RealityKit & Reality Composer Pro Q&A
1w
Reply to AppIntents-friendly WatchOS Companion App
The most important thing is being able to speak multi-step Siri interactions that generate new records, which include location services, btw. Second most important is timely widgets in the user‘s Smart Stack. And beneficial but not necessary is an app the user can open on the watch with up-to-date info and user input. I have honestly not given thought to whether those things could happen without a paired phone nearby, but I can imagine users benefitting from that.
Topic: General SubTopic:
watchOS Q&A
1w
Reply to Dynamic App Clip Card
I am interested in this too, but reviewing that page did not seem to offer a solution. Assuming I want the job title of the user sharing the app clip to appear in the subheading or a picture directly related to the shared content, is that possible without creating separate app clips for each and every permutation?
Topic: UI Frameworks SubTopic: General Tags:
Nov ’25
Reply to Getting ShinyTV Example to Work
I have solved this problem. It seems that adding the Associated Domain credential inadvertently created a second entitlement file in a different location and the system was not properly resolving the entitlement. Once I deleted both entitlement files and started fresh, sign in worked properly.
Topic: App & System Services SubTopic: General Tags:
Jul ’25
Reply to Getting ShinyTV Example to Work
I have an Apple TV 4K (3rd generation) and was able to generate a sysdiagnose, so thanks for that clarification. This document could probably use updating because it makes no such distinction between 3rd gen devices. Nevertheless, going through the swcutil_show.txt, ShinyTV is not listed among the SharedWebCredential apps. I have also tried with another app of mine with a different domain, both with validated AASA files using swcutil. If the AASA is set up correctly and in the right place, and the app has Associated Domain entitlements, what else could be preventing it from appearing in the swcutil_show.txt file?
Topic: App & System Services SubTopic: General Tags:
Jul ’25
Reply to Getting ShinyTV Example to Work
Thanks for the suggestions. I have tried a few times streaming console data from my Apple TV, and the only items relevant to my password request are from the CompanionServices subsystem and AuthenticationServices. com.apple.swc does not show up for me. Testing with swcutil all came back positive that the file can be downloaded and that it can identify the webcredentials section, the app id, and the domain. I saw in the docs a suggestion to take a sysdiagnose but my 3rd gen doesn't support that, and tvOS shared login does not appear to work on the simulator.
Topic: App & System Services SubTopic: General Tags:
Jul ’25
Reply to Custom 3D Window Using RealityView
Hi thanks for the reply; I think i wasn’t clear about what’s going on. I have a window with a RealityView in it. Currently that RealityView presents a Reality Composer scene. When I look at that window in the compiled app, the contents sit physically in front of the actual window, and moving them back in the scene has no effect at all. Since posting this, I have experimented with doing a findEntity in the scene and pulling out a Transform which parents a ModelEntity. Doing that allows me to manipulate the depth of the ModelEntity relative to that Transform. But it is surprising that I can’t do the same thing with the scene itself; I have to extract scene elements to adjust their depth.
Nov ’24
Reply to Interactive Surfaces
I think you misunderstood. I am in fact successfully using a RCP3 shader graph to read the frames from my VNC feed and separate them into right and left eye. The issue is that I can't do something like build a web browser (or better yet safari extension) that has similar capabilities because the browser window needs to be a RCP3 surface that I am applying a material to. It's like watching a movie of an app instead of the actual app and so you can't interact with it
Topic: Reality Composer Pro SubTopic:
RealityKit & Reality Composer Pro Q&A
Replies
Boosts
Views
Activity
3d
Reply to Guidance Around PCC
Yes, I'd appreciate that package!
Topic: Foundation Models SubTopic:
Foundation Models Q&A
Replies
Boosts
Views
Activity
6d
Reply to Guidance Around PCC
That's great info, thanks. And clarification of the language: "Have fewer than 2 million first-time app downloads from any of their apps on the App Store." Is this a per-app number or is it cumulative for all apps? Also, the documentation on the Trends tab in App Store Connect is out of date, I think. Is the Units reflect first time downloads or does it include re-downloads?
Topic: Foundation Models SubTopic:
Foundation Models Q&A
Replies
Boosts
Views
Activity
6d
Reply to Using AssistantEntity with existing AppEntities for iOS17+
This sample code exhibits the error I mentioned in my comment: 'extension' macro cannot be attached to extension (extension of 'CJLogAppEntity') import AppIntents import CoreLocation @available(iOS 17.0, *) struct CJLogAppEntity: AppEntity { static var defaultQuery = CJLogEntityQuery() let id: String static let typeDisplayRepresentation: TypeDisplayRepresentation = "Folder" let displayRepresentation: DisplayRepresentation @Property var title: String? @Property var message: AttributedString? @Property var mediaItems: [IntentFile] @Property var entryDate: Date? @Property var location: CLPlacemark? } @AppEntity(schema: .journal.entry) @available(iOS 18.0, *) extension CJLogAppEntity {} struct CJLogEntityQuery: EntityQuery { func entities(for ids: [String]) async throws -> [CJLogAppEntity] { return [CJLogAppEntity]() } func suggestedEntities() async throws -> [CJLogAppEntity] { return [CJLogAppEntity]() } }
Topic: App Intents SubTopic:
App Intents & Siri Q&A
Replies
Boosts
Views
Activity
1w
Reply to Vision API
Thanks for the feedback; I think I misunderstood and also misspoke. Yes Vision, as you say, has been available to run on static images, but not on objects in the room; I.e., I can’t scan a barcode or text in the space around me, or see a person’s 3d joints superimposed on them. I think when I saw the announcement about Visual Intelligence, some described it as bringing Vision to the AVP. Does Visual Intelligence on the AVP extend my capabilities as a developer?
Topic: Reality Composer Pro SubTopic:
RealityKit & Reality Composer Pro Q&A
Replies
Boosts
Views
Activity
1w
Reply to AppIntents-friendly WatchOS Companion App
Thanks for the reference materials Yes I have a Shortcuts provider in my iOS target currently
Topic: General SubTopic:
watchOS Q&A
Replies
Boosts
Views
Activity
1w
Reply to AppIntents-friendly WatchOS Companion App
The most important thing is being able to speak multi-step Siri interactions that generate new records, which include location services, btw. Second most important is timely widgets in the user‘s Smart Stack. And beneficial but not necessary is an app the user can open on the watch with up-to-date info and user input. I have honestly not given thought to whether those things could happen without a paired phone nearby, but I can imagine users benefitting from that.
Topic: General SubTopic:
watchOS Q&A
Replies
Boosts
Views
Activity
1w
Reply to Control Logging of CloudKit in Xcode
Thanks, that's helpful. With Xcode filtering, what is the name of the subsystem I should target to remove CloudKit / iCloud messages?
Topic: iCloud SubTopic:
iCloud & CloudKit Q&A
Tags:
Replies
Boosts
Views
Activity
1w
Reply to Dynamic App Clip Card
I am interested in this too, but reviewing that page did not seem to offer a solution. Assuming I want the job title of the user sharing the app clip to appear in the subheading or a picture directly related to the shared content, is that possible without creating separate app clips for each and every permutation?
Topic: UI Frameworks SubTopic: General Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to ASPasswordCredential Returns a Blank Password with Apple Password App
I think this might be an iOS 26 bug. Testing on iPadOS 18 does not exhibit the problem, and others testing on iOS 18 devices have not seen the issue. I have submitted a bug report via Feedback Assistant (FB19587057).
Topic: Privacy & Security SubTopic: General Tags:
Replies
Boosts
Views
Activity
Aug ’25
Reply to Getting ShinyTV Example to Work
I have solved this problem. It seems that adding the Associated Domain credential inadvertently created a second entitlement file in a different location and the system was not properly resolving the entitlement. Once I deleted both entitlement files and started fresh, sign in worked properly.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Getting ShinyTV Example to Work
I have an Apple TV 4K (3rd generation) and was able to generate a sysdiagnose, so thanks for that clarification. This document could probably use updating because it makes no such distinction between 3rd gen devices. Nevertheless, going through the swcutil_show.txt, ShinyTV is not listed among the SharedWebCredential apps. I have also tried with another app of mine with a different domain, both with validated AASA files using swcutil. If the AASA is set up correctly and in the right place, and the app has Associated Domain entitlements, what else could be preventing it from appearing in the swcutil_show.txt file?
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Getting ShinyTV Example to Work
Thanks for the suggestions. I have tried a few times streaming console data from my Apple TV, and the only items relevant to my password request are from the CompanionServices subsystem and AuthenticationServices. com.apple.swc does not show up for me. Testing with swcutil all came back positive that the file can be downloaded and that it can identify the webcredentials section, the app id, and the domain. I saw in the docs a suggestion to take a sysdiagnose but my 3rd gen doesn't support that, and tvOS shared login does not appear to work on the simulator.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Correct formatting of webcredentials app id
Thanks for the thorough explanation!
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Custom 3D Window Using RealityView
Hi thanks for the reply; I think i wasn’t clear about what’s going on. I have a window with a RealityView in it. Currently that RealityView presents a Reality Composer scene. When I look at that window in the compiled app, the contents sit physically in front of the actual window, and moving them back in the scene has no effect at all. Since posting this, I have experimented with doing a findEntity in the scene and pulling out a Transform which parents a ModelEntity. Doing that allows me to manipulate the depth of the ModelEntity relative to that Transform. But it is surprising that I can’t do the same thing with the scene itself; I have to extract scene elements to adjust their depth.
Replies
Boosts
Views
Activity
Nov ’24