Search results for

“A Summary of the WWDC25 Group Lab”

10,689 results found

Post

Replies

Boosts

Views

Activity

Reply to New Design - impact to color use in existing app SwiftUI View
As part of the 6/12/25 SwiftUI Group lab, Curt and Taylor spoke to this specifically related to use of color in liquid glass SwiftUI views and that use of color should be limited. However, they didn’t speak to how to put color back into List View outline disclosure carets that aren’t there in new iOS/iPad OS 26. I would still like to know if I can add color back into the carets. Here was my group lab question that was discussed: “I’ve noticed with the new design language, SwiftUI views appear to not use color as much. Example, color modifiers for List View items like carets. Is this intended and can developers introduce color back into SwiftUI view elements, if desired, like in iOS/iPadOS 18?”
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jun ’25
VoiceOver with Swift Charts summaries
I had a VoiceOver user point out an issue with my app that I’ve definitely known about but have never been able to fix. I thought that I had filed feedback for it but it looks like I didn’t. Before I do I’m hoping someone has some insight. With Swift Charts when I tap part of a chart it summarizes the three hours and then you can swipe vertically to hear it read out details of each hour. For example, the Y-Axis is the amount of precipitation for the hour and the X-Axis is the hours of the day. The units aren't being read in the summary but they are for individual hours when you vertical swipe. The summary says something such as varies between 0.012 and 0.082. In the AXChartDescriptor I’ve tried everything I can think of, including adding a label to the Y axis in the DataPoint but nothing seems to work in getting that summary to include units. With a vertical swipe it seems to just be using my accessibility label and value (like I would expect).
0
0
331
Feb ’26
Friday Networking Lab
Question:Will the Hypervisor framework in macOS Sierra provide bridged networking? The reason I’m asking is that this will allow VMs hosted by the Hypervisor framework to obtain and use their own IP address; rather than use a NAT.If providing bridged networking is a security concern, has Apple considered adding an Apple-signed entitlement to control approval of the feature in the App Store?Answer:This is not in Sierra and is not currently planned for it. Please file bugs and feature requests if you want to see this in the next major macOS release.See complete list of session and lab notes here:https://forums.developer.apple.com/message/142899
0
0
560
Jun ’16
How to help Instrument's Swift task task lifetime summary group the same tasks so that the count for tasks is not always 1.
This is a screenshot from the Swift Task track in Xcode. I made these tasks with public actor ResourceManager { func foo() { for observer in observers { Task(name: ResourceManager notify observers) { await notification(observer) } } } } I am confused why each of the task is showing as a separate task in the task lifetime summary. Is there a way to queue the trace in Instruments into the fact that these are indeed the same task?
1
0
173
Dec ’25
Xcode playgrounds labs remove directions
I am starting to walk throught the App Development with Swift iBook and I have downloaded the App Development Swift Student labs. When I open a lab in Xcode there are directions and then places to write code. Once I start writing code the directions for the first problem disappear and I cant see them again to finish writing the code. How can I get the directions to stop dissapearing when trying to do the labs?I am using Xcode version 9.3.
8
0
2.1k
Apr ’18
Reply to How to force soft scrollEdgeEffectStyle in iOS 26?
I believe the solution to this problem is to use the new safeAreaBar(edge:alignment:spacing:content:) view modifier, as suggested by its documentation and a comment made during the SwiftUI group lab. However, I also believe that this modifier is currently broken (as of beta 2), because its behaviour seems to be no different to using safeAreaInset. I have filed feedback for this: FB18350439.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Jun ’25
Reply to Full Keyboard Access - Using Tab vs Arrows
This is normal, it's expected that you need a combination of Tabs and Arrows to navigate. Here's a summary of the different ways to navigate with FKA: Tab moves between groups (as defined by an element's focusGroupIdentifier https://developer.apple.com/documentation/uikit/uiview/3601233-focusgroupidentifier) some views are groups by default, like UIScrollView Ctrl + Tab moves linearly between all elements Arrows moves directionally
Topic: App & System Services SubTopic: Hardware Tags:
Mar ’23
Reply to Will Icon Composer support development of tvOS and visionOS icons?
We couldn't get to this question during the group lab session today, but we certainly saw it during the lab and appreciate you coming and asking about this! As you found, Icon Composer supports iOS, macOS, and watchOS icons. For tvOS and visionOS, you can preview the icon in Xcode through your asset catalog, or by using the Parallax Previewer app available for download on the Apple Design Resources page. I encourage you to create an Enhancement Request in Feedback Assistant for Icon Composer to gain support for visionOS and tvOS icons. Please post the FB number here! — Ed Ford,  DTS Engineer
Jun ’25
Apple employees not arriving to labs?
I've had two different labs scheduled for App Store Business and Marketing lab: Games be scheduled and nobody showed up. I was curious if anyone else has had a similar experience. I arrived earlier than scheduled for both appointments and waited hours each time for someone to arrive.
0
0
487
Jun ’21
CarPlay 1-on-1 lab
Is there any chance we could join a 1-on-1 Lab with the CarPlay team this week? It looks like there are none listed on Friday and the sessions scheduled for today, Thursday, are closed. We'd love to review the status of our CarPlay entitlement request for our navigation app with cool safety alerts. I totally understand that this is a last minute request. And thanks for your help!
2
0
396
Jun ’20
Reply to New Design - impact to color use in existing app SwiftUI View
As part of the 6/12/25 SwiftUI Group lab, Curt and Taylor spoke to this specifically related to use of color in liquid glass SwiftUI views and that use of color should be limited. However, they didn’t speak to how to put color back into List View outline disclosure carets that aren’t there in new iOS/iPad OS 26. I would still like to know if I can add color back into the carets. Here was my group lab question that was discussed: “I’ve noticed with the new design language, SwiftUI views appear to not use color as much. Example, color modifiers for List View items like carets. Is this intended and can developers introduce color back into SwiftUI view elements, if desired, like in iOS/iPadOS 18?”
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’25
VoiceOver with Swift Charts summaries
I had a VoiceOver user point out an issue with my app that I’ve definitely known about but have never been able to fix. I thought that I had filed feedback for it but it looks like I didn’t. Before I do I’m hoping someone has some insight. With Swift Charts when I tap part of a chart it summarizes the three hours and then you can swipe vertically to hear it read out details of each hour. For example, the Y-Axis is the amount of precipitation for the hour and the X-Axis is the hours of the day. The units aren't being read in the summary but they are for individual hours when you vertical swipe. The summary says something such as varies between 0.012 and 0.082. In the AXChartDescriptor I’ve tried everything I can think of, including adding a label to the Y axis in the DataPoint but nothing seems to work in getting that summary to include units. With a vertical swipe it seems to just be using my accessibility label and value (like I would expect).
Replies
0
Boosts
0
Views
331
Activity
Feb ’26
Friday Networking Lab
Question:Will the Hypervisor framework in macOS Sierra provide bridged networking? The reason I’m asking is that this will allow VMs hosted by the Hypervisor framework to obtain and use their own IP address; rather than use a NAT.If providing bridged networking is a security concern, has Apple considered adding an Apple-signed entitlement to control approval of the feature in the App Store?Answer:This is not in Sierra and is not currently planned for it. Please file bugs and feature requests if you want to see this in the next major macOS release.See complete list of session and lab notes here:https://forums.developer.apple.com/message/142899
Replies
0
Boosts
0
Views
560
Activity
Jun ’16
How to help Instrument's Swift task task lifetime summary group the same tasks so that the count for tasks is not always 1.
This is a screenshot from the Swift Task track in Xcode. I made these tasks with public actor ResourceManager { func foo() { for observer in observers { Task(name: ResourceManager notify observers) { await notification(observer) } } } } I am confused why each of the task is showing as a separate task in the task lifetime summary. Is there a way to queue the trace in Instruments into the fact that these are indeed the same task?
Replies
1
Boosts
0
Views
173
Activity
Dec ’25
Xcode playgrounds labs remove directions
I am starting to walk throught the App Development with Swift iBook and I have downloaded the App Development Swift Student labs. When I open a lab in Xcode there are directions and then places to write code. Once I start writing code the directions for the first problem disappear and I cant see them again to finish writing the code. How can I get the directions to stop dissapearing when trying to do the labs?I am using Xcode version 9.3.
Replies
8
Boosts
0
Views
2.1k
Activity
Apr ’18
Reply to How to force soft scrollEdgeEffectStyle in iOS 26?
I believe the solution to this problem is to use the new safeAreaBar(edge:alignment:spacing:content:) view modifier, as suggested by its documentation and a comment made during the SwiftUI group lab. However, I also believe that this modifier is currently broken (as of beta 2), because its behaviour seems to be no different to using safeAreaInset. I have filed feedback for this: FB18350439.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to Full Keyboard Access - Using Tab vs Arrows
This is normal, it's expected that you need a combination of Tabs and Arrows to navigate. Here's a summary of the different ways to navigate with FKA: Tab moves between groups (as defined by an element's focusGroupIdentifier https://developer.apple.com/documentation/uikit/uiview/3601233-focusgroupidentifier) some views are groups by default, like UIScrollView Ctrl + Tab moves linearly between all elements Arrows moves directionally
Topic: App & System Services SubTopic: Hardware Tags:
Replies
Boosts
Views
Activity
Mar ’23
Answered questions from Security lab session
I asked a number of questions in Security lab session. If interested, please see the attached Answered questions: Answered questions
Replies
0
Boosts
0
Views
587
Activity
Jun ’24
Reply to Will Icon Composer support development of tvOS and visionOS icons?
We couldn't get to this question during the group lab session today, but we certainly saw it during the lab and appreciate you coming and asking about this! As you found, Icon Composer supports iOS, macOS, and watchOS icons. For tvOS and visionOS, you can preview the icon in Xcode through your asset catalog, or by using the Parallax Previewer app available for download on the Apple Design Resources page. I encourage you to create an Enhancement Request in Feedback Assistant for Icon Composer to gain support for visionOS and tvOS icons. Please post the FB number here! — Ed Ford,  DTS Engineer
Replies
Boosts
Views
Activity
Jun ’25
Apple employees not arriving to labs?
I've had two different labs scheduled for App Store Business and Marketing lab: Games be scheduled and nobody showed up. I was curious if anyone else has had a similar experience. I arrived earlier than scheduled for both appointments and waited hours each time for someone to arrive.
Replies
0
Boosts
0
Views
487
Activity
Jun ’21
Reply to My app has been waiting for the review status
May be some reviewers are busy preparing for WWDC25. Hence extended delays.
Replies
Boosts
Views
Activity
Jun ’25
WWDC24 Labs - Webex requiring meeting password
I have a lab, scheduled right now actually, that Webex is asking me for a password. I emailed wwdc @ apple.com hoping to hear back but it just generated a Case ID for me. I was curious, is anyone else can't join their labs because Webex is prompting for a meeting password?
Replies
2
Boosts
0
Views
720
Activity
Jun ’24
CarPlay 1-on-1 lab
Is there any chance we could join a 1-on-1 Lab with the CarPlay team this week? It looks like there are none listed on Friday and the sessions scheduled for today, Thursday, are closed. We'd love to review the status of our CarPlay entitlement request for our navigation app with cool safety alerts. I totally understand that this is a last minute request. And thanks for your help!
Replies
2
Boosts
0
Views
396
Activity
Jun ’20
Reply to Background Local cache update
What I mentioned is the current state of things. There isn't anything else introduced about this at WWDC25.
Replies
Boosts
Views
Activity
Dec ’25
Lab exercises in book "App Development with Swift"
Where are the lab exercise resources located in this book?
Replies
2
Boosts
0
Views
1.9k
Activity
May ’17