Search results for

“A Summary of the WWDC26 Group Lab”

10,956 results found

Post

Replies

Boosts

Views

Activity

Reply to SwiftUI Pull to Refresh Support
I have had success with the following native implementation from SwiftUI Lab: https://gist.github.com/swiftui-lab/3de557a513fbdb2d8fced41e40347e01 A few modifications had to be made including changes to use the new ProgressView etc.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Aug ’20
Cannot remove testing group from build/Groups auto adding to build
Hi, I would like to rollout our builds to a subset of our internal testers (the devs) before we roll it out to the rest (QA, product managers). After submitting the compliance on a build, both of my internal testing groups are automatically added to the build. I thought I would get to choose which group at add myself. To make matters worse, there doesn't appear to be any way to remove a testing group from a build, despite what the documentation says: As you can see, my pointer is over the group, but no Delete button exists Help! -Ethan
2
0
2.5k
Mar ’23
Group Apps
Since I have upgraded to IOS 14.2 on my iphone7. On several occasions I have found that I am unable to open my apps that I have grouped together. When I touch the screen the apps acknowledge that I selected it but it does nothing after that.
0
0
289
Dec ’20
Switching subscription groups
I have an app where fans can subscribe to multiple content creators and this is implemented using a sub group for each creator. I want to add a new all access subscription that gets them access to everything. We are treating this as an upgrade from the individual sub. Is there a way to cancel (or swap) the individual sub when they subscribe to the bundled sub? I know within a sub group it is possible to go between sub levels, but not sure about across sub groups.
0
0
488
Apr ’24
Wednesday Security Lab Notes
Question:In the session yesterday, it was mentioned that Gatekeeper's app relocation moved the app on an unsigned disk image to a randomized place on the filesystem. How does this work?Answer:When the app with the unsigned dependencies is launched, Gatekeeper makes a synthetic instance of the app at a randomized location elsewhere in the filesystem. The synthesized instance of the app is what is actually being launched.The synthesized instance is by itself in this new location, so it's unable to access the unsigned code / library / script, etc when it launches.The synthesized instance is not a copy of the app. Overall behavior is similar to nullfs on BSD, or using bind mounts on Linux.Question:Are there any new features in System Integrity Protection on Sierra, or will the functionality be the same as in El Capitan? If there are new features, what are they?Answer:Same functionality as in El Capitan.Question:Are there new restrictions in System Integrity Protection on Sierra, or do the restrictions currently m
1
0
1.8k
Jun ’16
Make a Group of wallets
Hello Apple Cummunityis there any functionality available in iOS that allows to group the Wallets with the same type (e.g. passTypeIdentifier) in the Wallet App? So the user would see in the Wallet App a group of the same type of Wallets.Thanks in advance.Kind regardsDennis
1
0
1.2k
Mar ’17
MinuteWeather summary property returns empty string
I've been unable to get MinuteWeather to return anything for the summary property -- it used to return a nil value which was fixed in a previous beta, but now it always returns an empty string. The rest of the MinuteWeather data returns as expected. Example call: let latitude = 37.323 let longitude = -122.032 Task { let weatherData = WeatherData.shared let minutely = await weatherData.minutelyForecast(for: CLLocation(latitude: latitude, longitude: longitude)) guard let minutelyWeather = minutely else { print(WeatherKit minutely data unavailable) return } print(minutelyWeather.summary) // This returns } WeatherData class: class WeatherData: NSObject { static let shared = WeatherData() private let service = WeatherService.shared func minutelyForecast(for location: CLLocation) async -> WeatherKit.Forecast? { let minuteWeather = await Task.detached(priority: .userInitiated) { let forecast = try? await self.service.weather(for: location, including: .minute) return forecast }.value return minuteWeather
3
0
1.2k
Sep ’22
App Groups: How to use group. prefix and Team ID prefix for Multiplatform apps?
Hi there, I have a Multiplatform app with just one app target with an iPhone, iPad and Мас Destination. On the Mac my app is a developer singed App that is being distributed outside of the Mac App Store. I want to use App Groups, but as long as there are multiple destinations, Xcode only allows Group Identifiers starting with group.. However, for macOS I need to have a group ID that starts with the TeamID as explained here. So I created two separate entitlements, which are identical, but with different group IDs: With Automatic Code Signing enabled, I get this warning: Xcode still seems thinks it has to use the macOS Group ID for the iOS version. In the App Groups section, the mac Group ID is red and the iOS Group ID is not checked. The app builds and runs without issues on all platforms. The App Store Connect validation (for the iOS version) also works without any errors. Am I doing something wrong? Do I need a separate Mac targ
2
0
712
Nov ’24
Reply to SwiftUI Pull to Refresh Support
I have had success with the following native implementation from SwiftUI Lab: https://gist.github.com/swiftui-lab/3de557a513fbdb2d8fced41e40347e01 A few modifications had to be made including changes to use the new ProgressView etc.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Aug ’20
How to delete a subscription group?
I just changed my mind to have a one-time-purchase instead of subscriptions.However, I can see any way to delete the subscription group that I created before.It seems if you don't delete the group you will be REJECTED by the review team.😐Any ideas?
Replies
0
Boosts
0
Views
761
Activity
May ’20
Cannot remove testing group from build/Groups auto adding to build
Hi, I would like to rollout our builds to a subset of our internal testers (the devs) before we roll it out to the rest (QA, product managers). After submitting the compliance on a build, both of my internal testing groups are automatically added to the build. I thought I would get to choose which group at add myself. To make matters worse, there doesn't appear to be any way to remove a testing group from a build, despite what the documentation says: As you can see, my pointer is over the group, but no Delete button exists Help! -Ethan
Replies
2
Boosts
0
Views
2.5k
Activity
Mar ’23
Answered questions from Enterprise lab sessions and Slack Q&A
I asked a number of questions during the Q&A sessions Apple ran on the WWDC23 Slack instance and in Enterprise lab sessions. If interested, please see the attached Answered questions: Answered questions
Replies
0
Boosts
0
Views
931
Activity
Jun ’23
Group Apps
Since I have upgraded to IOS 14.2 on my iphone7. On several occasions I have found that I am unable to open my apps that I have grouped together. When I touch the screen the apps acknowledge that I selected it but it does nothing after that.
Replies
0
Boosts
0
Views
289
Activity
Dec ’20
Switching subscription groups
I have an app where fans can subscribe to multiple content creators and this is implemented using a sub group for each creator. I want to add a new all access subscription that gets them access to everything. We are treating this as an upgrade from the individual sub. Is there a way to cancel (or swap) the individual sub when they subscribe to the bundled sub? I know within a sub group it is possible to go between sub levels, but not sure about across sub groups.
Replies
0
Boosts
0
Views
488
Activity
Apr ’24
Wednesday Security Lab Notes
Question:In the session yesterday, it was mentioned that Gatekeeper's app relocation moved the app on an unsigned disk image to a randomized place on the filesystem. How does this work?Answer:When the app with the unsigned dependencies is launched, Gatekeeper makes a synthetic instance of the app at a randomized location elsewhere in the filesystem. The synthesized instance of the app is what is actually being launched.The synthesized instance is by itself in this new location, so it's unable to access the unsigned code / library / script, etc when it launches.The synthesized instance is not a copy of the app. Overall behavior is similar to nullfs on BSD, or using bind mounts on Linux.Question:Are there any new features in System Integrity Protection on Sierra, or will the functionality be the same as in El Capitan? If there are new features, what are they?Answer:Same functionality as in El Capitan.Question:Are there new restrictions in System Integrity Protection on Sierra, or do the restrictions currently m
Replies
1
Boosts
0
Views
1.8k
Activity
Jun ’16
Make a Group of wallets
Hello Apple Cummunityis there any functionality available in iOS that allows to group the Wallets with the same type (e.g. passTypeIdentifier) in the Wallet App? So the user would see in the Wallet App a group of the same type of Wallets.Thanks in advance.Kind regardsDennis
Replies
1
Boosts
0
Views
1.2k
Activity
Mar ’17
Getting summary data from reports
Is there any way to get the following pieces of information from a downloaded report ( can obviously get this from looking at appstoreconnect but I want to get it in an automated way.) Total subscriber count for a specific date Exact payment made to the bank account for a certain month Thanks
Replies
0
Boosts
0
Views
338
Activity
Jul ’23
MTLComputeCommandEncoder: what are SIMD groups?
MTLComputeCommandEncoder documentation mentions the concept of SIMD group, and there is even a void simdgroup_barrier(mem_flags flags) function in addition to the threadgroup_barrier one.Can someone please explain what a SIMD group is? Why that term and not a thread group?
Replies
0
Boosts
0
Views
553
Activity
May ’17
test groups in TestFlight
I'm not able to add more than one test group to a build that I've submitted for review for testing with TestFlight. Is that the intention of Apple or is it a bug? Will I be able to add other test groups after my build is approved by review?
Replies
0
Boosts
0
Views
523
Activity
Apr ’17
MinuteWeather summary property returns empty string
I've been unable to get MinuteWeather to return anything for the summary property -- it used to return a nil value which was fixed in a previous beta, but now it always returns an empty string. The rest of the MinuteWeather data returns as expected. Example call: let latitude = 37.323 let longitude = -122.032 Task { let weatherData = WeatherData.shared let minutely = await weatherData.minutelyForecast(for: CLLocation(latitude: latitude, longitude: longitude)) guard let minutelyWeather = minutely else { print(WeatherKit minutely data unavailable) return } print(minutelyWeather.summary) // This returns } WeatherData class: class WeatherData: NSObject { static let shared = WeatherData() private let service = WeatherService.shared func minutelyForecast(for location: CLLocation) async -> WeatherKit.Forecast? { let minuteWeather = await Task.detached(priority: .userInitiated) { let forecast = try? await self.service.weather(for: location, including: .minute) return forecast }.value return minuteWeather
Replies
3
Boosts
0
Views
1.2k
Activity
Sep ’22
Reply to "Open Website Environment" menu gone?
Hey @THeberlein, That is correct. The previous behavior was a part of the developer preview. The new API follows the Fullscreen API pattern. Please checkout the WWDC26 session Explore immersive website environments in visionOS to learn more. Thanks, Michael
Topic: Spatial Computing SubTopic: General Tags:
Replies
Boosts
Views
Activity
5d
App Groups: How to use group. prefix and Team ID prefix for Multiplatform apps?
Hi there, I have a Multiplatform app with just one app target with an iPhone, iPad and Мас Destination. On the Mac my app is a developer singed App that is being distributed outside of the Mac App Store. I want to use App Groups, but as long as there are multiple destinations, Xcode only allows Group Identifiers starting with group.. However, for macOS I need to have a group ID that starts with the TeamID as explained here. So I created two separate entitlements, which are identical, but with different group IDs: With Automatic Code Signing enabled, I get this warning: Xcode still seems thinks it has to use the macOS Group ID for the iOS version. In the App Groups section, the mac Group ID is red and the iOS Group ID is not checked. The app builds and runs without issues on all platforms. The App Store Connect validation (for the iOS version) also works without any errors. Am I doing something wrong? Do I need a separate Mac targ
Replies
2
Boosts
0
Views
712
Activity
Nov ’24
Reply to Question About Developer Labs
Hmm. I've looked at the website again and actually there isn't a mention of specific APIs. It just says Technical and App Store labs and Design Labs. So I guess I'll just close this question.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Jun ’21