Search results for

“A Summary of the WWDC25 Group Lab”

11,206 results found

Post

Replies

Boosts

Views

Activity

Consumable ticket sharing within groups
Hello, I would like to ask for your opinion on whether the following in-app purchase (IAP) specifications would comply with the App Store Review Guidelines. ■ App Overview ・The app allows users to create a “Family Group” by inviting other family members to join. ・The app provides brain-training games. The game itself is displayed via WebView. ・All purchases use in-app purchase (IAP) only. No external payments or links are provided. ■ Purchase Types (2 models) ① Group Unlimited Plan ・If one member of a family group purchases this plan, all members of the same group can play the games without limits for a certain period. ・This is based on the app’s own group-sharing mechanism, not Apple’s “Family Sharing.” We will clearly state this in the UI to avoid confusion. ② Ticket System (Consumable) ・One user in the group purchases game-play tickets. ・Other members of the same group can also consume those tickets to play. ・Tickets are only shared and consume
1
0
130
Sep ’25
Consumable ticket sharing within groups
Hello, I would like to ask for your opinion on whether the following in-app purchase (IAP) specifications would comply with the App Store Review Guidelines. ■ App Overview ・The app allows users to create a “Family Group” by inviting other family members to join. ・The app provides brain-training games. The game itself is displayed via WebView. ・All purchases use in-app purchase (IAP) only. No external payments or links are provided. ■ Purchase Types (2 models) ① Group Unlimited Plan ・If one member of a family group purchases this plan, all members of the same group can play the games without limits for a certain period. ・This is based on the app’s own group-sharing mechanism, not Apple’s “Family Sharing.” We will clearly state this in the UI to avoid confusion. ② Ticket System (Consumable) ・One user in the group purchases game-play tickets. ・Other members of the same group can also consume those tickets to play. ・Tickets are only shared and consume
1
0
89
Sep ’25
Problem with Terminal App and Window Groups
Hello.Apple Support has directed me here.Some basic details.MacBook Pro (Retina, 15-inch, Mid 2015)OS X El Capitain Version 10.11.6 (15G1108)Terminal Version 2.6.1 (361.1)When I start ther Terminal App I want it to start with a number of windows that open in s Window Group. I have done this by saving my own window group which has the windows, directories and arrangements and sizes. I have set the Terminal->Properties->Gerneral->On startup, open: to be Window group: and I have selected my previously saved Window Group. This has worked correctly on previous versions of OS X on my older MBP 2012 and has until recently worked without problems on my current MBP, although beacuse I use Terminal infrequently I can not say for certain which (if any) of the recent updates have caused the below problem to occur.I have the Terminal App permanatly in my Dock (I have set it's Dock Option to Keep In Dock)When I click the Terminal App Icon in the Dock the Terminal App starts (a l
1
0
354
Nov ’16
Syncing App Group files through iCloud
We have an iOS application that is using a third party c library, which uses UNIX domain sockets to manage and save content to the device. We have found that this is possible by using Application Groups. We are now interested in using iCloud to sync the data between multiple devices. However, I've been unable to find any documentation on how to do this or if it's possible just using App groups. I've built a simple prototype, but I have had no success syncing App Group files through iCloud. Is this possible? If so, please post a link to documentation or an example of this being done.
1
0
1.2k
Jan ’20
add notifications to grouped geometry with gestures
Hi, it's me again. I have now solved my three problems. i can load .rcproject files in Xcode. i can assign gestures to a group of objects created in RealityComposer (the group contains two spirals. One I can use a menu button to affect behaviors of objects I created in RealityComposer. (A spiral fades out at startup and fades back in when the button is clicked). Individually, this all works the way I thought it would. But now I want to bring it all together. So I put everything together in a ViewController. But now I see two groups of objects on my device. One group reacts to the gestures and the other reacts to the button and the notifications. How do I get both the notifications and the gesture control to work together on one group. You can find me project here: https://wetransfer.com/downloads/2e217e5d86d273360fb50a7298e986b520220203152701/26a044d7ffc54197ac6055c4065f6f1c20220203152827/cf5ad8 Thanks for your help. Thomas
0
0
420
Feb ’22
Unintentional Group Message replies?
Can someone attempt to duplicate this for me?I had two messages come in this past weekend, from two different people using iMessage. When I replied to only one of the messages, it created a group message between the two people who messaged me, and sent my reply to both parties. Steps involved:1) Receive iMessages from two different people2) Tap one message and reply3) Send pre-built reply such as OK, Sorry, can't talk right now4) Check Messages on iPhoneAfter these steps, I discovered that I had sent a group message instead of just replying to the message that I was intending to reply to. I would appreciate if someone could verify this as a bug. Thanks in advance.
0
0
198
Jun ’15
Reply to Background Local cache update
@Engineer Thanks for your explanation. As you suggested https://forums.developer.apple.com/forums/thread/685525 for my use case, but on this thread I have not found any way to handle updates when the app is killed the user. I know as per apple guidelines this user choice is strongly respected and we can not do anything, but do we have any recent updated in WWDC25.
Dec ’25
[WWDC25] For GuessTogether, can you initiate a FaceTime call via the custom SharePlay button?
Hello, For GuessTogether source code, it seems like the code assumes that you're already in a FaceTime call before pressing the custom SharePlay button (labeled Play Guess Together). If not already on a FaceTime call, my Apple Vision Pro and the visionOS simulator both do nothing after throwing warnings. Is this intended behavior? If so, how do I make it so that pressing the button can also initiate FaceTime calls? Is this allowed? Thank you!
3
0
190
Jun ’25
Issue with Auto-Blur Effect of NSScrollViews under NSToolbar, Ref: WWDC25
Hello, I'm building an app that is designed to largely mimick Apple's own audio auto-switch behavior when switching between different audio output devices like MacBook Pro speakers and AirPods. The purpose is to lend a hand to certain apps, like CrossOver (wine) ran x68-64 apps that don't seem to respond well to CoreAudio changing the audio output after the x68-64 program has already init its audio after startup. Thus, I don't actually need much of a GUI except for a few specific features, and perhaps later some ehancements I'd like to add that can make use of a proper GUI. I've decided to implement the MacOS Tahoe Apple Liquid Glass UI to keep the user experience as streamlined and intuitive as possible. I've largely been successful: The GitHub page goes into greater detail showing the greater context of the AppKit API's I'm using to achieve this UI design. There is just one issue I haven't been able to solve, how to get the sidebar tab(s) to blur when scrolled underneath the Window Controls (Traffic Light)
1
0
294
2w
Reply to SwiftUI know when new page from TabView is activated
You can pass in a variable @State private var selectedTab = 0 to the TabView and to the DayViewsTabView(selection: $selectedTab) { DayView(summary: History.shared.today(), tab: $selectedTab).tag(0) DayView(summary: History.shared.thisWeek(), tab: $selectedTab).tag(1) DayView(summary: History.shared.thisMonth(), tab: $selectedTab).tag(2) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Dec ’20
Developer tools group?
I'm taking my first steps in learning to code in C (using the books 'C programming Absolute Beginner's Guide (Perry + Miller)', and 'Programming in C (Kochan)') . I'm about 2/3 + 1/3 of the way through the books. Last week, using X-code 7.3's IDE, I was able to build and run the programmes I typed in, and the answers came out correct. Then on Saturday, I created a programme that built and ran but gave the result 0.0000. So I tried using the break arrows, but didn’t understand the explanations about threads. So I searched for a button that would allow me to step through the programme one instruction at a time whilst I observed the changing values of the variables and the inputs to them. I pressed a lot of buttons, but could find it.Since then I’ve been unable to run any programme. (Did I unwittingly give a stop instruction to the IDE ?)The build is successful, and then a pop-up appears saying - Developer Tools Access needs to take control off another process for debugging to continue. Type the name and passwor
1
0
7.9k
Jul ’16
Reply to SwiftData relationship crash on 17.x
I appreciate the reply. I saw it done both ways online and I left the @Relationship on Summary more as a reminder to me. But removing it gives me the same error. I also removed the creation Summary from the Item initializer and created the Summary after init, but the same error remains so it's definitely something to do with the relationship. And it still exists on 17.7.
Topic: App & System Services SubTopic: iCloud Tags:
Oct ’24
Consumable ticket sharing within groups
Hello, I would like to ask for your opinion on whether the following in-app purchase (IAP) specifications would comply with the App Store Review Guidelines. ■ App Overview ・The app allows users to create a “Family Group” by inviting other family members to join. ・The app provides brain-training games. The game itself is displayed via WebView. ・All purchases use in-app purchase (IAP) only. No external payments or links are provided. ■ Purchase Types (2 models) ① Group Unlimited Plan ・If one member of a family group purchases this plan, all members of the same group can play the games without limits for a certain period. ・This is based on the app’s own group-sharing mechanism, not Apple’s “Family Sharing.” We will clearly state this in the UI to avoid confusion. ② Ticket System (Consumable) ・One user in the group purchases game-play tickets. ・Other members of the same group can also consume those tickets to play. ・Tickets are only shared and consume
Replies
1
Boosts
0
Views
130
Activity
Sep ’25
Consumable ticket sharing within groups
Hello, I would like to ask for your opinion on whether the following in-app purchase (IAP) specifications would comply with the App Store Review Guidelines. ■ App Overview ・The app allows users to create a “Family Group” by inviting other family members to join. ・The app provides brain-training games. The game itself is displayed via WebView. ・All purchases use in-app purchase (IAP) only. No external payments or links are provided. ■ Purchase Types (2 models) ① Group Unlimited Plan ・If one member of a family group purchases this plan, all members of the same group can play the games without limits for a certain period. ・This is based on the app’s own group-sharing mechanism, not Apple’s “Family Sharing.” We will clearly state this in the UI to avoid confusion. ② Ticket System (Consumable) ・One user in the group purchases game-play tickets. ・Other members of the same group can also consume those tickets to play. ・Tickets are only shared and consume
Replies
1
Boosts
0
Views
89
Activity
Sep ’25
Problem with Terminal App and Window Groups
Hello.Apple Support has directed me here.Some basic details.MacBook Pro (Retina, 15-inch, Mid 2015)OS X El Capitain Version 10.11.6 (15G1108)Terminal Version 2.6.1 (361.1)When I start ther Terminal App I want it to start with a number of windows that open in s Window Group. I have done this by saving my own window group which has the windows, directories and arrangements and sizes. I have set the Terminal->Properties->Gerneral->On startup, open: to be Window group: and I have selected my previously saved Window Group. This has worked correctly on previous versions of OS X on my older MBP 2012 and has until recently worked without problems on my current MBP, although beacuse I use Terminal infrequently I can not say for certain which (if any) of the recent updates have caused the below problem to occur.I have the Terminal App permanatly in my Dock (I have set it's Dock Option to Keep In Dock)When I click the Terminal App Icon in the Dock the Terminal App starts (a l
Replies
1
Boosts
0
Views
354
Activity
Nov ’16
Syncing App Group files through iCloud
We have an iOS application that is using a third party c library, which uses UNIX domain sockets to manage and save content to the device. We have found that this is possible by using Application Groups. We are now interested in using iCloud to sync the data between multiple devices. However, I've been unable to find any documentation on how to do this or if it's possible just using App groups. I've built a simple prototype, but I have had no success syncing App Group files through iCloud. Is this possible? If so, please post a link to documentation or an example of this being done.
Replies
1
Boosts
0
Views
1.2k
Activity
Jan ’20
add notifications to grouped geometry with gestures
Hi, it's me again. I have now solved my three problems. i can load .rcproject files in Xcode. i can assign gestures to a group of objects created in RealityComposer (the group contains two spirals. One I can use a menu button to affect behaviors of objects I created in RealityComposer. (A spiral fades out at startup and fades back in when the button is clicked). Individually, this all works the way I thought it would. But now I want to bring it all together. So I put everything together in a ViewController. But now I see two groups of objects on my device. One group reacts to the gestures and the other reacts to the button and the notifications. How do I get both the notifications and the gesture control to work together on one group. You can find me project here: https://wetransfer.com/downloads/2e217e5d86d273360fb50a7298e986b520220203152701/26a044d7ffc54197ac6055c4065f6f1c20220203152827/cf5ad8 Thanks for your help. Thomas
Replies
0
Boosts
0
Views
420
Activity
Feb ’22
Testers Group not added to Build
After uploading a build to AppStore Connect via Xcode, the default AppStore Connect Users - Group is not added to the Build in TestFlight. I am also unable to add the Group manually. It is always grayed out.
Replies
0
Boosts
0
Views
99
Activity
Sep ’25
Reply to Trigger iOS App Intent from MacOS Spotlight Search
Hello @extraman You are referencing [WWDC25] Get to know App Intents. The documentation for configuring Spotlight is Making app entities available in Spotlight, from Resources below the WWDC session. Many users utilize Spotlight to open apps, nice work including this!  Travis Trotto - DTS Engineer
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jan ’26
Unintentional Group Message replies?
Can someone attempt to duplicate this for me?I had two messages come in this past weekend, from two different people using iMessage. When I replied to only one of the messages, it created a group message between the two people who messaged me, and sent my reply to both parties. Steps involved:1) Receive iMessages from two different people2) Tap one message and reply3) Send pre-built reply such as OK, Sorry, can't talk right now4) Check Messages on iPhoneAfter these steps, I discovered that I had sent a group message instead of just replying to the message that I was intending to reply to. I would appreciate if someone could verify this as a bug. Thanks in advance.
Replies
0
Boosts
0
Views
198
Activity
Jun ’15
Reply to Background Local cache update
@Engineer Thanks for your explanation. As you suggested https://forums.developer.apple.com/forums/thread/685525 for my use case, but on this thread I have not found any way to handle updates when the app is killed the user. I know as per apple guidelines this user choice is strongly respected and we can not do anything, but do we have any recent updated in WWDC25.
Replies
Boosts
Views
Activity
Dec ’25
[WWDC25] For GuessTogether, can you initiate a FaceTime call via the custom SharePlay button?
Hello, For GuessTogether source code, it seems like the code assumes that you're already in a FaceTime call before pressing the custom SharePlay button (labeled Play Guess Together). If not already on a FaceTime call, my Apple Vision Pro and the visionOS simulator both do nothing after throwing warnings. Is this intended behavior? If so, how do I make it so that pressing the button can also initiate FaceTime calls? Is this allowed? Thank you!
Replies
3
Boosts
0
Views
190
Activity
Jun ’25
Issue with Auto-Blur Effect of NSScrollViews under NSToolbar, Ref: WWDC25
Hello, I'm building an app that is designed to largely mimick Apple's own audio auto-switch behavior when switching between different audio output devices like MacBook Pro speakers and AirPods. The purpose is to lend a hand to certain apps, like CrossOver (wine) ran x68-64 apps that don't seem to respond well to CoreAudio changing the audio output after the x68-64 program has already init its audio after startup. Thus, I don't actually need much of a GUI except for a few specific features, and perhaps later some ehancements I'd like to add that can make use of a proper GUI. I've decided to implement the MacOS Tahoe Apple Liquid Glass UI to keep the user experience as streamlined and intuitive as possible. I've largely been successful: The GitHub page goes into greater detail showing the greater context of the AppKit API's I'm using to achieve this UI design. There is just one issue I haven't been able to solve, how to get the sidebar tab(s) to blur when scrolled underneath the Window Controls (Traffic Light)
Replies
1
Boosts
0
Views
294
Activity
2w
Reply to SwiftUI know when new page from TabView is activated
You can pass in a variable @State private var selectedTab = 0 to the TabView and to the DayViewsTabView(selection: $selectedTab) { DayView(summary: History.shared.today(), tab: $selectedTab).tag(0) DayView(summary: History.shared.thisWeek(), tab: $selectedTab).tag(1) DayView(summary: History.shared.thisMonth(), tab: $selectedTab).tag(2) }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Dec ’20
Developer tools group?
I'm taking my first steps in learning to code in C (using the books 'C programming Absolute Beginner's Guide (Perry + Miller)', and 'Programming in C (Kochan)') . I'm about 2/3 + 1/3 of the way through the books. Last week, using X-code 7.3's IDE, I was able to build and run the programmes I typed in, and the answers came out correct. Then on Saturday, I created a programme that built and ran but gave the result 0.0000. So I tried using the break arrows, but didn’t understand the explanations about threads. So I searched for a button that would allow me to step through the programme one instruction at a time whilst I observed the changing values of the variables and the inputs to them. I pressed a lot of buttons, but could find it.Since then I’ve been unable to run any programme. (Did I unwittingly give a stop instruction to the IDE ?)The build is successful, and then a pop-up appears saying - Developer Tools Access needs to take control off another process for debugging to continue. Type the name and passwor
Replies
1
Boosts
0
Views
7.9k
Activity
Jul ’16
Reply to SwiftData relationship crash on 17.x
I appreciate the reply. I saw it done both ways online and I left the @Relationship on Summary more as a reminder to me. But removing it gives me the same error. I also removed the creation Summary from the Item initializer and created the Summary after init, but the same error remains so it's definitely something to do with the relationship. And it still exists on 17.7.
Topic: App & System Services SubTopic: iCloud Tags:
Replies
Boosts
Views
Activity
Oct ’24
How to remove obsolete Subscription Groups in IAP
Is there a way to remove Subscription groups? I am new to IAP and created a bunch of subscription groups that I no longer want to use. To prevent all the clutter, I would like to remove the unused groups.Same with IAP entries. I can delete them but it continues to show as deleted. Would like to start afresh/clean slate with IAP. Is there a way to do this?
Replies
4
Boosts
0
Views
6.3k
Activity
Mar ’17