Search results for

A Summary of the WWDC25 Group Lab

10,091 results found

Post

Replies

Boosts

Views

Activity

How to delete campaign group?
I have created a campaign group and then realized that was not what I meant — I was hoping I could add existing campaigns to a group and use this group to view only those campaigns in my dashboard. How do I go about deleting this empty campaign group and is there a way to achieve what I'd intended? TIA.
6
0
4.5k
May ’17
Xcode Playgrounds causes full system hang when running labs
Currently, I am trying to learn how to program within Xcode. I have been reading the App Development with Swift book, and as such have been trying to use the labs within the book, to help with my understanding of the Swift programming language. However, whenever I try to open one of these labs, my computer screen starts to flicker, with sections of it going black for a second or two. Following this, all of the screen, except the mouse, will freeze completely. The clock freezes, every app freezes, and it will even stop midway through changing desktops. Sometimes, it will freeze indefinitely, and sometimes it will resume after half an hour if not more. I have had to force restart my computer several times as a result of the freezing.However, it only happens whenever I open the labs. Nothing else will cause this, and if I quit Xcode before it freezes, everything will go back to normal, so I’m relatively confident it’s not a hardware issue.I have deleted the labs, and then rein
3
0
1.6k
Sep ’18
Xcode 9 App Development with Swift labs not working
I’m fairly new to Swift and have been moving through the App Development with Swift lessons after completing Intro to App Development with Swift and reached lessons 4.6 intermediate Table Views just fine. 2 days ago when loading the labs for the lesson, the playground formatting seemed to be off as everything was commented out (/*) when loading, Import Foundation which should be at the start of the form now appears somewhere in the middle. This resulted in me being unable to navigate the lab’s (next/previous), basically not usable.Performed a clean install of MacOS Heigh Sierra on MacBook Pro 2016, reloaded Xcode 9 and downloaded a new copy of the Students Resources but the behaviour stays the same.Is anyone else experiencing this behaviour or know what could be causing it?
3
0
1.2k
Nov ’17
Deleting Subscription Groups
Howdy!I am in the process of submitting a final build for our company. We have been flagged for a subscription group error. So we essentially have 4 subscription groups. We have determined we only need one and have input the in app purchases in that one group.The problem is we were rejected because the other subscription groups were empty.How do I delete the unused and obsolete subscription group. I have created a support ticket. Have not heard anything back at all. Or is there a way to submit and reference only the one sub group?Thanks for any help!
9
0
7.2k
Oct ’18
App Groups on macOS, 'Register App Groups' Code Signing Problems
So I just updated Xcode to 16.3 and updated a project to its recommended build settings which includes Register App Groups. So I have an outside Mac App Store app that uses app groups. Here we have an action extension. I can't debug it, can't get it to run. Nothing useful in Xcode is displayed when I try... but it looks like a code signing issue when I run and have Console open. So I try to make a provisioning profile manually and set it...didn't work. I noticed now though in signing & capabilities the group id is in red...like it's invalid, or something? This was a macOS styled group without the group. prefix. So am I supposed to switch it to have the group. prefix? It makes the red text go away (no warnings or anything about app groups here, just red text). So if I change it to group. prefix..does that make an entire new container?What happens on app update for installs that don't have group. prefix? Does the system transpa
5
0
109
May ’25
App Library groupings
On the screen with the groupings of apps along with the app library how is it decided what to label the groupings? For example the British Airways app is listed in the store in the category Travel but is grouped in an area called lifestyle. How is iOS deciding how to group the apps and what to call that group?
1
0
567
Jun ’20
CoreData and Group By
Hi Folks, Sorry I am sure this has been asked before - Beginner level programmer trying to get my head round something I am sure is simple. I know coredata is not a Relational database but please go easy!! I have data my app is storing as people respond to the 'game' a 'session' guid (runNumber) , and if they hit the correct button or not (correctAnswer). I want to group the responses by the guid and sum the 'correct' answers. I think I am pulling the data correctly: @Environment(.managedObjectContext) private var viewContext @FetchRequest( entity: CoreScore.entity(), sortDescriptors: [ NSSortDescriptor(keyPath: CoreScore.runNumber, ascending: false) ] ) var corescores: FetchedResults But my view List(corescores, id: .self) { corescore in Text(corescore.runNumber ?? Unknown) Text(corescore.correctAnswer ?? Unknown) } Shows all the individual responses... How do I group them by runNumber?
0
0
289
Jan ’21
About the new Apple Music Summary Streams Reports
https://help.apple.com/itc/contentreporterguide/?lang=en#/apd0b86cb176 In the page up above, it says Event report for a day consists of two parts, and each one must be downloaded separately. I interpreted it to mean that there are two types of Streams Reports: Summary - https://help.apple.com/itc/musicsalesandtrends/?lang=en#/itc8b8ced395 and Detailed. - https://help.apple.com/itc/musicsalesandtrends/?lang=en#/itc1f31430ac Isn't that wrong?
0
0
335
Mar ’21
Reply to Disable iOS 26 UINavigationBar Auto Intvert Background and Title
You could try adjusting the edge effect using UIScrollEdgeEffect and specifying a different style. That said, starting in iOS 26, the recommendation is to reduce your use of custom backgrounds in navigation elements and controls. Any custom backgrounds and appearances you use in the navigation bar might overlay or interfere with Liquid Glass or other effects that the system provides, such as the scroll edge effect. To learn how to update your app to adopt Liquid Glass, see the following resources: Adopting Liquid Glass WWDC25 session 356: Get to know the new design system WWDC25 session 284: Build a UIKit app with the new design.
Topic: UI Frameworks SubTopic: UIKit
Sep ’25