Search results for

A Summary of the WWDC25 Group Lab

10,092 results found

Post

Replies

Boosts

Views

Activity

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.4k
Mar ’23
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
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.7k
Jun ’16
Inconsistent grouping of notifications
I'm sending push notifications to a notification extension, and within the extension setting the threadIdentifier to be the same. But I'm observing inconsistent grouping behaviour, and behaviour that changes over time. The general iPhone settings are to display notifications as a Stack, and the app settings are to show on lock screen, notification center and banners and the notification grouping is set to by app (changing it to automatic doesn't affect the behaviour below). Pushes are displayed on the lock screen grouped together, then if the device is roused and the screen swiped down to reveal the notification center then they are still grouped. So far so good. If the iphone is active then the notifications appear at the top of the screen, one by one, but in this case if there is a swipe down to reveal the notification center then the notifications are not grouped when displayed, but shown individually. But then if one waits a few minutes and then displays the no
1
0
55
Mar ’25
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
Reply to PHP and Swift interoperability
There was some discussion of language interoperability at WWDC25 this year. Please see the WWDC25 session Explore Swift and Java interoperability and the Related sessions listed on that page. Also, for server related stuff you may be interested in this Swift on Server article. For anything else you're thinking of that's not covered in those items, perhaps consider filing an enhancement request or participating in the Swift open source project. You can file an enhancement request using the Feedback Assistant. If you file the request, please post the Feedback number here so we can make sure it gets routed to the right team. If you're not familiar with how to file enhancement requests, take a look at Bug Reporting: How and Why?
Topic: Programming Languages SubTopic: Swift Tags:
Jun ’25
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
257
Dec ’20
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
611
Nov ’24
Tuesday Education and Enterprise Deployment and Development Lab Notes
Question:Is there an update for Apple Remote Desktop Admin for Sierra? If there is, will it be just enough to make it Sierra-compatible or will there be new functionality available?Answer:ARD Admin for Sierra will include bug fixes and Sierra compatibility, but no new features or functionality are planned.Question:Are there plans to offer Profile Manager as a cloud service?Answer:No comment.Question:We've attempted to follow the Installer lab team suggestion of doing a scripted run of startosinstall to install macOS using an installer package:https://forums.developer.apple.com/message/143685In our testing, we are having problems determining a way to do additional package payloads that will be installed after the new OS is installed.The script only allows for installing installer packages prior to the reboot install. What is the suggested way to do this?Answer:Use System Image Utility's NetInstall workflow for this. It creates a customized installer and stores inside the generated disk image (NetInsta
0
0
772
Jun ’16