Search results for

“A Summary of the WWDC25 Group Lab”

10,699 results found

Post

Replies

Boosts

Views

Activity

Reply to UITabGroup child tabs ignoring viewControllerProvider in Sidebar
This is the default behavior for how UITabGroup works. To get enhanced view controller management through a UINavigationController stack, use the UITabGroup.managingNavigationController API. There's a little more description of how that works on the following answer in another post in the forum; or check out the WWDC25 - Make your UIKit app more flexible video.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jan ’26
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.
Oct ’24
iOS iMessage Group Message Limitation
Hi, I have iOS 13.6.1 installed and I have a group message that I want to add additional contacts to. The original group message was sent to both iPhone and Android phone users. I Googled how to add additional contacts to a group message in iOS and have found different posts regarding the steps but when I open a group message and touch the I icon, there is no +Add User button to select from. Some have posted that this is because if there are other than iPhone users in a group message, iOS doesn't support adding additional users. Is this true? Even though I have the Send as SMS enabled?
0
0
347
Aug ’20
Is Application group or some other ...
In the last post I mentioned that I was having trouble updating the SimpleFirewall example builds and run again. That was my lack of knowlege. The DriverKit and System Extension PDF has the steps to get this going...What is/are the best way to expose tcp socket level IPC ( unix socket ) between APP-ONE and APP-TWO. Only one APP has the system extension embedded in it ( just like the way SimpleFirewall project ).Since I have old style commandline daemon that needs to talk to SystemExension directly, I created a swift based tcp server side based on GCD dispatch mechanism. Console log seems like it is on listen mode. But any client outside this App Bundle can not connect to it. All local address. CONNECTION REFUSED is the message on the client side.How to go about this ???Thanks,Prokashhttps://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-group
0
0
567
Aug ’19
App Groups - Code sign problem
Hello,I am working on app, and widget for client. Everthing works fine, but issue is that I need to sign .ipa manually, since I don't have access to the client developer account. I have valid AdHoc and Distribution profiles, with proper app group, but when I create .ipa with that profiles widget is not working (works fine with my personal account). Both app and extensions have same group, and everything works fine when automatically signing is set .App group is marked with red in xcode. I checked profile and there is app group capabilitie, and it is same as set in project.Is there any possibility that manually signing for app groups is not working in xcode? And is there any solution, since getting access to client account is not a option?Tnx
1
0
2.3k
Aug ’18
Adding subscriptions to group. Inactive state?
I currently have one subscription group with one approved subscription. It is live in production. I am now adding more subscriptions to the same group. Different tiers and different durations. Is there a way to get these new subscriptions approved by Apple, but not yet have them show as options within the group? Sort of an approved-but-inactive state? There's a timing issue. I don't want the new options to show before the website/app descriptive text supports them. And I don't want the website/app descriptive text to describe purchase options that aren't yet available.
0
0
60
Dec ’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
105
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
71
Sep ’25
Reply to UITabGroup child tabs ignoring viewControllerProvider in Sidebar
This is the default behavior for how UITabGroup works. To get enhanced view controller management through a UINavigationController stack, use the UITabGroup.managingNavigationController API. There's a little more description of how that works on the following answer in another post in the forum; or check out the WWDC25 - Make your UIKit app more flexible video.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jan ’26
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.
Replies
Boosts
Views
Activity
Oct ’24
iOS iMessage Group Message Limitation
Hi, I have iOS 13.6.1 installed and I have a group message that I want to add additional contacts to. The original group message was sent to both iPhone and Android phone users. I Googled how to add additional contacts to a group message in iOS and have found different posts regarding the steps but when I open a group message and touch the I icon, there is no +Add User button to select from. Some have posted that this is because if there are other than iPhone users in a group message, iOS doesn't support adding additional users. Is this true? Even though I have the Send as SMS enabled?
Replies
0
Boosts
0
Views
347
Activity
Aug ’20
Is Application group or some other ...
In the last post I mentioned that I was having trouble updating the SimpleFirewall example builds and run again. That was my lack of knowlege. The DriverKit and System Extension PDF has the steps to get this going...What is/are the best way to expose tcp socket level IPC ( unix socket ) between APP-ONE and APP-TWO. Only one APP has the system extension embedded in it ( just like the way SimpleFirewall project ).Since I have old style commandline daemon that needs to talk to SystemExension directly, I created a swift based tcp server side based on GCD dispatch mechanism. Console log seems like it is on listen mode. But any client outside this App Bundle can not connect to it. All local address. CONNECTION REFUSED is the message on the client side.How to go about this ???Thanks,Prokashhttps://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-group
Replies
0
Boosts
0
Views
567
Activity
Aug ’19
Error creating app group ID
When I try to create an app group ID, I get the following error. What does this mean and how do I get around this or fix it?There were errors in the data supplied. Please correct and re-submit.An Application Group with Identifier 'group.us.gnolaum.Payments' is not available. Please enter a different string.
Replies
0
Boosts
0
Views
967
Activity
Sep ’18
Amount on conversions on Ad Group view doesn't correspond with sum of conversions from keywords view
I have few keywords that have conversions. When I summarize all those conversions my result is much lower than a summary of conversions from Ad Group view.Why? It's like 5 vs 18.
Replies
2
Boosts
0
Views
402
Activity
Dec ’16
Lexical or Preprocessor Issue Group
I am trying to write code for XCTest (Unit Testing) in xCode Project, when i try to run unit testing function i got the error like Lexical or Preprocessor Issue Group Can anyone help me on this? For Information i am checking with xCode 11.1 Thanks in Advance.
Replies
0
Boosts
0
Views
917
Activity
Dec ’20
Reply to Xcode 7 Doesn't See My Framework
In the labs today, they implied that you really want a separate target for each framework, though they can contain the same files.
Topic: App & System Services SubTopic: Core OS Tags:
Replies
Boosts
Views
Activity
Jun ’15
App Groups - Code sign problem
Hello,I am working on app, and widget for client. Everthing works fine, but issue is that I need to sign .ipa manually, since I don't have access to the client developer account. I have valid AdHoc and Distribution profiles, with proper app group, but when I create .ipa with that profiles widget is not working (works fine with my personal account). Both app and extensions have same group, and everything works fine when automatically signing is set .App group is marked with red in xcode. I checked profile and there is app group capabilitie, and it is same as set in project.Is there any possibility that manually signing for app groups is not working in xcode? And is there any solution, since getting access to client account is not a option?Tnx
Replies
1
Boosts
0
Views
2.3k
Activity
Aug ’18
vpn group settings missing?
In the 10.10.x VPN dialog, there's a setting for Group. This is missing in the current dialog.Not sure if this is why, but I set up a new VPN connection to our company VPN.
Replies
1
Boosts
0
Views
204
Activity
Jun ’15
how to create group using a few users phone numbers allowing them to share things with each other within the group?
Im making an app in which users create a group using their phone numbers. How can my app use those phone numbers to create a group?
Replies
0
Boosts
0
Views
113
Activity
Aug ’15
Adding subscriptions to group. Inactive state?
I currently have one subscription group with one approved subscription. It is live in production. I am now adding more subscriptions to the same group. Different tiers and different durations. Is there a way to get these new subscriptions approved by Apple, but not yet have them show as options within the group? Sort of an approved-but-inactive state? There's a timing issue. I don't want the new options to show before the website/app descriptive text supports them. And I don't want the website/app descriptive text to describe purchase options that aren't yet available.
Replies
0
Boosts
0
Views
60
Activity
Dec ’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
105
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
71
Activity
Sep ’25
Creating a custom focus group
I'm trying to create a focus group called Entertainment and I like want to add all of the streaming apps, like Netflix, Disney+, Discovery+, Peacock, Paramount+, Apple TV App, but none is showing when hit the add apps button.
Replies
2
Boosts
0
Views
908
Activity
Oct ’21