Search results for

“A Summary of the WWDC25 Group Lab”

10,703 results found

Post

Replies

Boosts

Views

Activity

Reply to iOS 26 Apple Wallet - Upgrade Boarding Pass with Live Activities
Hi @betul, @WaldiM, The beta spec displayed in the WWDC25 session is outdated. Please see the following documentation to adopt semantic boarding passes in Apple Wallet: Creating an airline boarding pass using semantic tags https://developer.apple.com/documentation/walletpasses/creating-an-airline-boarding-pass-using-semantic-tags Cheers, Paris X Pinkney |  WWDR | DTS Engineer
Topic: App & System Services SubTopic: Wallet Tags:
Jan ’26
Allow group chats to be available to all authenticated users
I am developing a chatting app which has groups sections where it shows all groups in firebase firestore.here is my data collection:and inside Group i have:can anyone guide me how to get all Group from firestore? in realtime database i did that but could not get along in firestore:DataService.instance.REF_GROUPS.observe(.value) { (snapshot) in DataService.instance.getAllMessagesFor(desiredGroup: self.group!, handler: { (returnedGroupMessages) in self.groupMessages = returnedGroupMessages self.tableView.reloadData() if self.groupMessages.count > 0 { self.tableView.scrollToRow(at: IndexPath(row: self.groupMessages.count - 1, section: 0), at: .none, animated: true) } }) }
1
0
558
Oct ’19
tensorflow-metal plugin problem with grouped convolutions
Running grouped convolutions on an M2 with the metal plugin I get an error. Example code: Using TF2.11 and no metal plugin I get import tensorflow as tf tf.keras.layers.Conv1D(5,1,padding=same, kernel_initializer=ones, groups=5)(tf.ones((1,1,5))) # displays On TF2.14 with the plugin I received import tensorflow as tf tf.keras.layers.Conv1D(5,1,padding=same, kernel_initializer=ones, groups=5)(tf.ones((1,1,5))) # displays ... NotFoundError: Exception encountered when calling layer 'conv1d_3' (type Conv1D). could not find registered platform with id: 0x104d8f6f0 [Op:__inference__jit_compiled_convolution_op_78] Call arguments received by layer 'conv1d_3' (type Conv1D): • inputs=tf.Tensor(shape=(1, 1, 5), dtype=float32) could not find registered platform with id
1
0
755
Jan ’24
UIMenuElementAttributesKeepsMenuPresented not working when Glass Grouping changes
I'm working on a UIBarButtonItem that is supposed to be a filter button - it shows a menu in which the user can (un)check menu items. Using the UIMenuElementAttributesKeepsMenuPresented attribute on the UIActions prevents the menu to hide after the user clicks an item. The button is put alongside another button as the leftBarButtonItems of my navigation item. In iOS 26 they are grouped into a single glass container automatically. Now when the user starts filtering, I want to highlight the UIBarButton item to signal to the user that the filter is active (similar to what Apple does in the Mail app). I do that by setting the UIBarButtonItemStyle to prominent. Now that works too, but it causes the automatic glass grouping to break up and the menu to hide. I'm fine with the grouping to break up, but the menu shouldn't hide. Is this a bug or can this be prevented somehow?
Topic: UI Frameworks SubTopic: UIKit Tags:
2
0
156
Oct ’25
Apple Pay - errors in AuthorizationViewController, Questions on payment Summary
If I only have one product item in Apple Pay, how would I detect a total? My app is a donation platform, so I don't need to actually ship anything, but would like contact info. I have a number of errors that I have tried to figure out to debug to no avail. Any help is appreciated.Also I keep getting this error (this was the same as the sample code given from WWDC).This is in my BuyTicketViewController.swift file. if PKPaymentAuthorizationViewController.canMakePaymentsUsingNetworks(BuyTicketViewController.paymentNetworks) { let button = PKPaymentButton(type: .Buy, style,: .Black) button.addTarget(self, action: applePayButtonPressed, forControlEvents: .TouchUpInside) button.center = applePayView.center button.autoresizingMask = [.FlexibleLeftMargin, .FlexibleRightMarin] applePayView.addSubview(button) } }The error says 'expected declaration.'The sample says to use else (for traditional checkout). When I put that it, it breaks the rest of my code and I get lots of errors.line 8 - eror on MerchantIDline 9 - error
0
0
1.2k
Sep ’15
RCS working 1on1; not working with Group Messages
I upgraded my kids iPhone 13 minis with iOS18 beta (public beta). RCS is used when we message each other individually which is great. I subsequently setup a group chat with my daugthers as the existing group chat would send messages with SMS only; once I setup that new chat between the three of us, both receive my messages as RCS. In this group chat, one daughter is sending messages with RCS and those messages are being received in the new RCS chat. However, the other daughter can send messages in the group chat only with SMS; those messages are being received in my original thread only. I checked and the messages app settings are the same for both. RCS is activated under settings --> apps --> messages and RCS works both ways with both of my daughters. Any ideas how I can get my daughter to send messages with RCS instead of SMS in the group chat?
1
0
1.6k
Aug ’24
network extension, app groups, unix domain socket
Hi to all.I am developing network extension and have several issues that I faced and have no idea how to solve.So:1. there is sandboxed application that can install/unintall own network extension;2. there is App Group(https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-groups?language=objc), sandboxed application and appropriate network extension are included into group via owns entitlement files;3. App group registered manualy on https://developer.apple.com/account/resources/identifiers/list/applicationGroup, the same identifier is used in appropriate entitlement files. Identifier on site looks like group.TEAM_ID.com.company.app-group. Identifier in entitlement looks like TEAM_ID.com.company.app-group, i.e. without precending group;4. It is required to use unix domain socket for IPC communication between sandboxed application and network extension(I am porting existing software, so this is not a b
5
0
2.5k
May ’20
Catalyst: Cannot submit/validate app with App Groups
I'm testing the submission/validation process for my Catalyst app, and I keep getting an App Store Connect error saying I have invalid code signing entitlements because my App Group does not start with my team ID. Mac apps are supposed to prefix their App Groups with the team ID, but iOS apps are prefixed with just the word group. And there's no way to manually change an iOS app group to start with a team ID (at least not that I can find). Has anyone found a workaround for this? Or am I just not able to use App Groups in a Catalyst app?(Note that I am using manual code signing because I need to submit the app for an existing app ID, so perhaps this isn't an issue for automatic signing.)
0
0
991
Aug ’19
Group leaderboards show "No Data Available"
After migrating my iOS leaderboard to a group and adding to this group my macOS game, I can't get to display my leaderboards anywhere.After testing in real devices, I don't get errors when reporting scores to the leaderbords with the grp prefix, but when trying to display the gamecenter leaderbords I only get the No Data Availble, also when trying to force load the scores on my leaderboards using the GKLeaderboard() .loadscores I get the following error: The requested operation could not be completed due to an error communicating with the server.
0
0
660
Jun ’17
Reply to iOS 26 Apple Wallet - Upgrade Boarding Pass with Live Activities
Hi @betul, @WaldiM, The beta spec displayed in the WWDC25 session is outdated. Please see the following documentation to adopt semantic boarding passes in Apple Wallet: Creating an airline boarding pass using semantic tags https://developer.apple.com/documentation/walletpasses/creating-an-airline-boarding-pass-using-semantic-tags Cheers, Paris X Pinkney |  WWDR | DTS Engineer
Topic: App & System Services SubTopic: Wallet Tags:
Replies
Boosts
Views
Activity
Jan ’26
Not able to send messages in group chat at all
I've not been able to send group iMessages at all since iOS beta 2 and it is same in beta 3 also.Anyone else also facing same issue?
Replies
0
Boosts
0
Views
1.3k
Activity
Jul ’18
Allow group chats to be available to all authenticated users
I am developing a chatting app which has groups sections where it shows all groups in firebase firestore.here is my data collection:and inside Group i have:can anyone guide me how to get all Group from firestore? in realtime database i did that but could not get along in firestore:DataService.instance.REF_GROUPS.observe(.value) { (snapshot) in DataService.instance.getAllMessagesFor(desiredGroup: self.group!, handler: { (returnedGroupMessages) in self.groupMessages = returnedGroupMessages self.tableView.reloadData() if self.groupMessages.count > 0 { self.tableView.scrollToRow(at: IndexPath(row: self.groupMessages.count - 1, section: 0), at: .none, animated: true) } }) }
Replies
1
Boosts
0
Views
558
Activity
Oct ’19
tensorflow-metal plugin problem with grouped convolutions
Running grouped convolutions on an M2 with the metal plugin I get an error. Example code: Using TF2.11 and no metal plugin I get import tensorflow as tf tf.keras.layers.Conv1D(5,1,padding=same, kernel_initializer=ones, groups=5)(tf.ones((1,1,5))) # displays On TF2.14 with the plugin I received import tensorflow as tf tf.keras.layers.Conv1D(5,1,padding=same, kernel_initializer=ones, groups=5)(tf.ones((1,1,5))) # displays ... NotFoundError: Exception encountered when calling layer 'conv1d_3' (type Conv1D). could not find registered platform with id: 0x104d8f6f0 [Op:__inference__jit_compiled_convolution_op_78] Call arguments received by layer 'conv1d_3' (type Conv1D): • inputs=tf.Tensor(shape=(1, 1, 5), dtype=float32) could not find registered platform with id
Replies
1
Boosts
0
Views
755
Activity
Jan ’24
UIMenuElementAttributesKeepsMenuPresented not working when Glass Grouping changes
I'm working on a UIBarButtonItem that is supposed to be a filter button - it shows a menu in which the user can (un)check menu items. Using the UIMenuElementAttributesKeepsMenuPresented attribute on the UIActions prevents the menu to hide after the user clicks an item. The button is put alongside another button as the leftBarButtonItems of my navigation item. In iOS 26 they are grouped into a single glass container automatically. Now when the user starts filtering, I want to highlight the UIBarButton item to signal to the user that the filter is active (similar to what Apple does in the Mail app). I do that by setting the UIBarButtonItemStyle to prominent. Now that works too, but it causes the automatic glass grouping to break up and the menu to hide. I'm fine with the grouping to break up, but the menu shouldn't hide. Is this a bug or can this be prevented somehow?
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
2
Boosts
0
Views
156
Activity
Oct ’25
Apple Pay - errors in AuthorizationViewController, Questions on payment Summary
If I only have one product item in Apple Pay, how would I detect a total? My app is a donation platform, so I don't need to actually ship anything, but would like contact info. I have a number of errors that I have tried to figure out to debug to no avail. Any help is appreciated.Also I keep getting this error (this was the same as the sample code given from WWDC).This is in my BuyTicketViewController.swift file. if PKPaymentAuthorizationViewController.canMakePaymentsUsingNetworks(BuyTicketViewController.paymentNetworks) { let button = PKPaymentButton(type: .Buy, style,: .Black) button.addTarget(self, action: applePayButtonPressed, forControlEvents: .TouchUpInside) button.center = applePayView.center button.autoresizingMask = [.FlexibleLeftMargin, .FlexibleRightMarin] applePayView.addSubview(button) } }The error says 'expected declaration.'The sample says to use else (for traditional checkout). When I put that it, it breaks the rest of my code and I get lots of errors.line 8 - eror on MerchantIDline 9 - error
Replies
0
Boosts
0
Views
1.2k
Activity
Sep ’15
Can we bundle/group in one folder for VPP Apps
Hi ,As per requirement to make one folder/group for all downloaded VPP apps in sandbox.Can anybody help me is it technically feasible ?If yes how could we do it.Regards,Skp
Replies
0
Boosts
0
Views
194
Activity
Jun ’16
RCS working 1on1; not working with Group Messages
I upgraded my kids iPhone 13 minis with iOS18 beta (public beta). RCS is used when we message each other individually which is great. I subsequently setup a group chat with my daugthers as the existing group chat would send messages with SMS only; once I setup that new chat between the three of us, both receive my messages as RCS. In this group chat, one daughter is sending messages with RCS and those messages are being received in the new RCS chat. However, the other daughter can send messages in the group chat only with SMS; those messages are being received in my original thread only. I checked and the messages app settings are the same for both. RCS is activated under settings --> apps --> messages and RCS works both ways with both of my daughters. Any ideas how I can get my daughter to send messages with RCS instead of SMS in the group chat?
Replies
1
Boosts
0
Views
1.6k
Activity
Aug ’24
network extension, app groups, unix domain socket
Hi to all.I am developing network extension and have several issues that I faced and have no idea how to solve.So:1. there is sandboxed application that can install/unintall own network extension;2. there is App Group(https://developer.apple.com/documentation/bundleresources/entitlements/com_apple_security_application-groups?language=objc), sandboxed application and appropriate network extension are included into group via owns entitlement files;3. App group registered manualy on https://developer.apple.com/account/resources/identifiers/list/applicationGroup, the same identifier is used in appropriate entitlement files. Identifier on site looks like group.TEAM_ID.com.company.app-group. Identifier in entitlement looks like TEAM_ID.com.company.app-group, i.e. without precending group;4. It is required to use unix domain socket for IPC communication between sandboxed application and network extension(I am porting existing software, so this is not a b
Replies
5
Boosts
0
Views
2.5k
Activity
May ’20
Catalyst: Cannot submit/validate app with App Groups
I'm testing the submission/validation process for my Catalyst app, and I keep getting an App Store Connect error saying I have invalid code signing entitlements because my App Group does not start with my team ID. Mac apps are supposed to prefix their App Groups with the team ID, but iOS apps are prefixed with just the word group. And there's no way to manually change an iOS app group to start with a team ID (at least not that I can find). Has anyone found a workaround for this? Or am I just not able to use App Groups in a Catalyst app?(Note that I am using manual code signing because I need to submit the app for an existing app ID, so perhaps this isn't an issue for automatic signing.)
Replies
0
Boosts
0
Views
991
Activity
Aug ’19
Reply to Network Extension for tvOS?
Thank you very much for looking into it. We were asked by one of the engineers in the Network Extension team (from a lab) to post about it here. I hope we can see this framework become available in a future tvOS release :-)
Replies
Boosts
Views
Activity
Jun ’20
Reply to DrawTogether example code?
By the way, I attended a GroupActivities lab and the engineer seemed surprised the code wasn't up. He indicated that it'd probably go up eventually, but it's unclear whether this was guaranteed.
Topic: Media Technologies SubTopic: Audio Tags:
Replies
Boosts
Views
Activity
Jun ’21
Reply to Troubleshouting AVCam build for iOS and run on MacBook with macos14 (Sonoma)
Set the build destination to Mac Catalyst, and the build will run properly. I filed a feedback (FB13904284) and shared this with Apple engineers during a WWDC24 lab session.
Replies
Boosts
Views
Activity
Jun ’24
Group leaderboards show "No Data Available"
After migrating my iOS leaderboard to a group and adding to this group my macOS game, I can't get to display my leaderboards anywhere.After testing in real devices, I don't get errors when reporting scores to the leaderbords with the grp prefix, but when trying to display the gamecenter leaderbords I only get the No Data Availble, also when trying to force load the scores on my leaderboards using the GKLeaderboard() .loadscores I get the following error: The requested operation could not be completed due to an error communicating with the server.
Replies
0
Boosts
0
Views
660
Activity
Jun ’17
Is there an upper limit on the number of subscription groups an app can offer?
I didn’t see any mention on whether there’s an upper limit on the number of subscription groups an app can offer. Is there an upper limit? To be compliant with 3.1.1 and 3.1.3(b), I would need tens of thousands of subscriptions groups.
Replies
2
Boosts
0
Views
1.2k
Activity
Jun ’24