Search results for

“A Summary of the WWDC25 Group Lab”

11,206 results found

Post

Replies

Boosts

Views

Activity

Change group for existing Renewable Subscriptions
I was wondering, we have already had Renewable Subscriptions items currently on sale on iTunes Connect, however, with iOS 10, the IAP group was introduced and I was wondering if it is possible to change the default group created in the iTunes Connect?If not and we have to create new items in the group, is it possible to migrate our user. (i.e unsubscribe from the current subscription group and move them to the new one)?Thank you
8
0
4.5k
Nov ’16
Running daemon with custom group id
Hi, I need to run a daemon helper(launchd) with a custom group id. For this I specify into the plist the group ID and everything works fine. The problems appear if I delete the group ID. Then the executable will not start anymore and if I want to send an XPC message remoteObjectProxyWithErrorHandler it will not return any error and the completion blocks are never executed. What would be the correct way to check handle the above situations? recreate group if it was deleted detect that the XPC connection cannot be established because the helper doesn't start Thanks
0
0
456
Apr ’23
gesture control with groups
Hello, after a lot of trial and error, I managed to move/scale/rotate a simple object with gestures. In retrospect, it was actually quite simple. If you know how to do it. But now I have a new problem. Maybe you would be so kind again and help me. I took the Augmented Reality base file in Xcode (the one with the Experience.rcproject file in it). I entered this code in the ViewController: import RealityKit class ViewController: UIViewController { @IBOutlet var arView: ARView! override func viewDidLoad() { super.viewDidLoad() // Load the Box scene from the Experience Reality File let boxAnchor = try! Experience.loadBox() if let box = boxAnchor.steelBox?.children.first as? ModelEntity { box.generateCollisionShapes(recursive: true) arView.installGestures(.all, for: box) } // Add the box anchor to the scene arView.scene.anchors.append(boxAnchor) } } And it works. The object, that is the cube, can be controlled with gestures. Then I created a second object (I duplicated the cube) in RealityComposer (from Xcode), re
2
0
720
Feb ’22
App group of free apps
I want to create an app group of free apps. They don't have any inapp purchases, completely free. But App store connect shows me an error: Each app in a free app bundle must offer an auto-renewable subscription that allows the user to subscribe to and access content or services in all apps of the bundle. So I cannot create an app group with free apps?
1
0
287
Oct ’24
Multiple Test groups?
As the Product Manager, I want to have more control over the testing our company does before releasing an app update. Currently, I'm able to set up only one group of testors in TestFlight. But I want to be able to do a more controlled release, with more rounds of testing. Something like this: testing by only me testing by key stakeholders internal to our company testing by interested parties of our parent company testing by power users publish to app store Is there any way I can do this, given Apple's tools and constraints for app testing?
0
0
494
Dec ’23
Reply to iOS 15 - "Keep..." button in provisional user notifications doesn't save the settings
I am also seeing the same issue whereas tapping Keep does not ask the user if they want them delivered prominently or quietly. It does have a button asking for showing them in a summary - but I as a user do not have summaries turned on. Tapping the summary button does not enable summaries either. I am trying to convince people we should switch over of using provisional notifications to be better iOS clients, but this issue will never get past the product department's scrutiny.
Apr ’22
MacOS App Group Container Protection
Quinn, in your post App Groups: macOS vs iOS: Fight!, you mention that an app must meet at least one of four criteria to access an app group container without user intervention: Your app is deployed via the Mac App Store (A). Or via TestFlight when running on macOS 15.1 or later (B). Or the app group ID starts with your app’s Team ID (C). Or your app’s claim to the app group is authorised by a provisioning profile embedded in the app (D) [1]. Our app is distributed directly (Developer ID), so it doesn't meet the first two criteria. We already had the app group ID set up to match the iOS ID (without our Team ID) and changing it now would affect our users already-stored data, so criteria C isn't really an option either. That brings us to criteria D. We've added the App Groups Capability to our App ID on the Developer site and creating a Developer ID provisioning profile with this App ID. However, for some reason the App Group Capability is not inclu
1
0
503
Jan ’25
Reply to The Liquid glass blur effect does not show over the UITabBar as content scrolls underneath.
The blur effect you see is actually the scroll edge effect from UIScrollView. By default, UITabBarController will configure scroll views in its descendant hierarchy with scroll edge effects. If you are using a custom tab bar, you can configure one yourself using UIScrollEdgeContainerInteraction. To learn more, you can also watch Build a UIKit app with the new design from WWDC25.
Topic: UI Frameworks SubTopic: UIKit Tags:
Jul ’25
Reply to Command line standalone app - run on other Macs
I think the first thing to do would be to figure out why you are typing both /usr and /user. If that is really output from Xcode, then you've got a royal mess on your hands. If you are re-typing, can you include Xcode's exact output?If this is a lab environment, then it probably makes more sense to just install the dependencies in the lab. It is a bit of a hassle, but you would been done by now.
Nov ’17
Issue with iOS group entitlements being recognized
I am making an iOS step counting app and I have included a widget in the design. I would like to get the widget to pull data from the main app to display step count etc so I created a bundle id for the widget and have been trying to use a group id to link them together. The group capabilities for both seem to be set up/enabled properly with the same App Groups id, but I've been getting an error in xcode which says, 'Provisioning Profile: BUNDLE_ID doesn't include the com.apple.developer.security.application-groups entitlement.' Try Again But the identifiers do have the App Group id enabled. I have tried automatic signing, manual signing with generated profiles, unchecking and rechecking auto-signing, removing and re-adding the group capability. Creating a new bundle id from scratch, creating a new group id from scratch. Always I get the error. I've really pulled my hair out troubleshooting this and would appreciate support. I'm happy to answer an
1
0
332
Nov ’25
Reply to Unable to present. Please file a bug.
I tried to get a WWDC lab about this issue but the request was rejected.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’21
Reply to Safari passwords on subdomains
the same issue on home lab server through reverse proxy annoying
Topic: Safari & Web SubTopic: General Tags:
Replies
Boosts
Views
Activity
Oct ’24
Reply to How to get multiple camera streams?
Enquired about this during a lab session at WWDC and you cannot get multiple camera streams.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jul ’23
Change group for existing Renewable Subscriptions
I was wondering, we have already had Renewable Subscriptions items currently on sale on iTunes Connect, however, with iOS 10, the IAP group was introduced and I was wondering if it is possible to change the default group created in the iTunes Connect?If not and we have to create new items in the group, is it possible to migrate our user. (i.e unsubscribe from the current subscription group and move them to the new one)?Thank you
Replies
8
Boosts
0
Views
4.5k
Activity
Nov ’16
Running daemon with custom group id
Hi, I need to run a daemon helper(launchd) with a custom group id. For this I specify into the plist the group ID and everything works fine. The problems appear if I delete the group ID. Then the executable will not start anymore and if I want to send an XPC message remoteObjectProxyWithErrorHandler it will not return any error and the completion blocks are never executed. What would be the correct way to check handle the above situations? recreate group if it was deleted detect that the XPC connection cannot be established because the helper doesn't start Thanks
Replies
0
Boosts
0
Views
456
Activity
Apr ’23
gesture control with groups
Hello, after a lot of trial and error, I managed to move/scale/rotate a simple object with gestures. In retrospect, it was actually quite simple. If you know how to do it. But now I have a new problem. Maybe you would be so kind again and help me. I took the Augmented Reality base file in Xcode (the one with the Experience.rcproject file in it). I entered this code in the ViewController: import RealityKit class ViewController: UIViewController { @IBOutlet var arView: ARView! override func viewDidLoad() { super.viewDidLoad() // Load the Box scene from the Experience Reality File let boxAnchor = try! Experience.loadBox() if let box = boxAnchor.steelBox?.children.first as? ModelEntity { box.generateCollisionShapes(recursive: true) arView.installGestures(.all, for: box) } // Add the box anchor to the scene arView.scene.anchors.append(boxAnchor) } } And it works. The object, that is the cube, can be controlled with gestures. Then I created a second object (I duplicated the cube) in RealityComposer (from Xcode), re
Replies
2
Boosts
0
Views
720
Activity
Feb ’22
App group of free apps
I want to create an app group of free apps. They don't have any inapp purchases, completely free. But App store connect shows me an error: Each app in a free app bundle must offer an auto-renewable subscription that allows the user to subscribe to and access content or services in all apps of the bundle. So I cannot create an app group with free apps?
Replies
1
Boosts
0
Views
287
Activity
Oct ’24
Multiple Test groups?
As the Product Manager, I want to have more control over the testing our company does before releasing an app update. Currently, I'm able to set up only one group of testors in TestFlight. But I want to be able to do a more controlled release, with more rounds of testing. Something like this: testing by only me testing by key stakeholders internal to our company testing by interested parties of our parent company testing by power users publish to app store Is there any way I can do this, given Apple's tools and constraints for app testing?
Replies
0
Boosts
0
Views
494
Activity
Dec ’23
Reply to iOS 15 - "Keep..." button in provisional user notifications doesn't save the settings
I am also seeing the same issue whereas tapping Keep does not ask the user if they want them delivered prominently or quietly. It does have a button asking for showing them in a summary - but I as a user do not have summaries turned on. Tapping the summary button does not enable summaries either. I am trying to convince people we should switch over of using provisional notifications to be better iOS clients, but this issue will never get past the product department's scrutiny.
Replies
Boosts
Views
Activity
Apr ’22
MacOS App Group Container Protection
Quinn, in your post App Groups: macOS vs iOS: Fight!, you mention that an app must meet at least one of four criteria to access an app group container without user intervention: Your app is deployed via the Mac App Store (A). Or via TestFlight when running on macOS 15.1 or later (B). Or the app group ID starts with your app’s Team ID (C). Or your app’s claim to the app group is authorised by a provisioning profile embedded in the app (D) [1]. Our app is distributed directly (Developer ID), so it doesn't meet the first two criteria. We already had the app group ID set up to match the iOS ID (without our Team ID) and changing it now would affect our users already-stored data, so criteria C isn't really an option either. That brings us to criteria D. We've added the App Groups Capability to our App ID on the Developer site and creating a Developer ID provisioning profile with this App ID. However, for some reason the App Group Capability is not inclu
Replies
1
Boosts
0
Views
503
Activity
Jan ’25
Can't add Tester group to new build it shows + sign but at popup can't select any group/tester
i uploaded a new build it shows at testflight but i can't assign tester in group section if i press on + sign it shows the group but can't check/select it
Replies
0
Boosts
0
Views
784
Activity
Dec ’22
Reply to The Liquid glass blur effect does not show over the UITabBar as content scrolls underneath.
The blur effect you see is actually the scroll edge effect from UIScrollView. By default, UITabBarController will configure scroll views in its descendant hierarchy with scroll edge effects. If you are using a custom tab bar, you can configure one yourself using UIScrollEdgeContainerInteraction. To learn more, you can also watch Build a UIKit app with the new design from WWDC25.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Command line standalone app - run on other Macs
I think the first thing to do would be to figure out why you are typing both /usr and /user. If that is really output from Xcode, then you've got a royal mess on your hands. If you are re-typing, can you include Xcode's exact output?If this is a lab environment, then it probably makes more sense to just install the dependencies in the lab. It is a bit of a hassle, but you would been done by now.
Replies
Boosts
Views
Activity
Nov ’17
Ephemeral Group in CloudKit Logs?
Hi, in searching the Cloudkit logs I am seeing that some of my public database record fetch records are listed as EphemeralGroup in the Operation Group name, any idea what this means? thank you
Replies
1
Boosts
0
Views
1.2k
Activity
Oct ’18
Issue with iOS group entitlements being recognized
I am making an iOS step counting app and I have included a widget in the design. I would like to get the widget to pull data from the main app to display step count etc so I created a bundle id for the widget and have been trying to use a group id to link them together. The group capabilities for both seem to be set up/enabled properly with the same App Groups id, but I've been getting an error in xcode which says, 'Provisioning Profile: BUNDLE_ID doesn't include the com.apple.developer.security.application-groups entitlement.' Try Again But the identifiers do have the App Group id enabled. I have tried automatic signing, manual signing with generated profiles, unchecking and rechecking auto-signing, removing and re-adding the group capability. Creating a new bundle id from scratch, creating a new group id from scratch. Always I get the error. I've really pulled my hair out troubleshooting this and would appreciate support. I'm happy to answer an
Replies
1
Boosts
0
Views
332
Activity
Nov ’25