Post

Replies

Boosts

Views

Activity

Reply to Uploading screenshots not working
You haven't actually clarified whether your screenshots are the right dimensions. You've said: I already tried to cut it into the right form for example 6,5" for the biggest screen. What are the dimensions of the screenshots that App Store Connect is asking you for? A 6.9" iPhone 17 Pro Max, for example, should be 1320 x 2868. When you add those they will be resized by App Store Connect to fit all other iPhone sizes. What are the dimensions of the screenshots you're trying to upload? App Store Connect will tell you exactly what's wrong with your screenshots, so please copy that error message and paste it here (as text, not as an image, please).
Dec ’25
Reply to System Data
Hi. These forums are for developers to ask for hints and tips on coding apps for Apple platforms. This isn't the place to grumble about an issue you're having with your iPhone. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Dec ’25
Reply to Xcode is a mess!
Well, that's your opinion. I've managed to release a number of Swift apps without seeing the issues you describe. I've got no idea why you can't organise your folders properly. What's the problem? You ask why it's no longer possible to do something, but you haven't really explained what it is that you're missing. You can still right-click a file or folder and create a new group, new group from selection, new folder, and new folder from selection. And you can drag files and folders onto the Project pane and choose how they're added. I don't understand what it is that you're having a problem with? Rather than posting here, why not raise feedback tickets and explain where you're seeing issues? Give Apple a record of the problems and a chance to fix them. You can do that at: https://feedbackassistant.apple.com/ then post the FB number(s) here. Also, Xcode 26 is out, so you could try that out and see if any of your issues are fixed.
Dec ’25
Reply to SwiftUI Canvas
When you say you needed to "download iOS 26.1" do you mean via the "Add Platforms..." button? Just want to be clear so that anyone else who happens upon this thread knows what the actual solution is. Remember to mark an answer as correct so everyone knows there's a solution to the problem. Thanks!
Nov ’25
Reply to SwiftUI Canvas
Not sure if this is the issue, but you don't have any Simulators listed in the "Other Installed Platforms" section. Click the "Add Platforms..." button and add the iOS 26.1 Simulator, and see if the device picker appears. If not, you might have to add a simulator in the Window > Devices & Simulators > Simulators tab. Hopefully this fixes it.
Nov ’25
Reply to How to collect a user's real email address when using Sign in with Apple and Private Relay?
Hide My Email is a service designed to allow users to HIDE THEIR EMAIL from apps and websites. To you, as the app developer, the email you are given is a valid email address, and you should treat it as such. The issue is in this bit of your post: For marketing reasons, I would prefer to have the user’s real email address instead of the relay email. You're not entitled to override someone's preferences and force them to receive marketing emails from you. Bypassing a Hide My Email address is doing exactly that. If the user decides they no longer want to receive emails from you, they can deactivate that email address and not receive your emails. That is their right. You have no right to override this, or to force someone to provide a different or non-'privaterelay' email address. If I download your app, and it refuses to allow a Hide My Email address, your app would be deleted immediately and I'd never use anything from you again. I'm pretty sure I'm not alone in this.
Nov ’25
Reply to Contrast for texts in widgets with image backgrounds transparent mode
But I can't help you if I don't know how that widget has been created. How are the four images displayed? What modifiers are you using? Is that in Clear or Tinted mode?! I've suggested the code from WidgetKit that you can use to change the appearance of the image in the different widget styles. Can you maybe apply them to the four images in the widget and show us what it looks like in Clear and Tinted modes? .vibrant mode is used when a widget is on the Lock Screen, in StandBy, and also in Tinted and Clear modes, and you either don't show an image background, or - if your widget requires an image, like Apple's Photos widget - then you need to desaturate your image and accent your text. Try some different options, post the code used, and a screenshot of how it looks.
Nov ’25
Reply to Uploading screenshots not working
You haven't actually clarified whether your screenshots are the right dimensions. You've said: I already tried to cut it into the right form for example 6,5" for the biggest screen. What are the dimensions of the screenshots that App Store Connect is asking you for? A 6.9" iPhone 17 Pro Max, for example, should be 1320 x 2868. When you add those they will be resized by App Store Connect to fit all other iPhone sizes. What are the dimensions of the screenshots you're trying to upload? App Store Connect will tell you exactly what's wrong with your screenshots, so please copy that error message and paste it here (as text, not as an image, please).
Replies
Boosts
Views
Activity
Dec ’25
Reply to System Data
Hi. These forums are for developers to ask for hints and tips on coding apps for Apple platforms. This isn't the place to grumble about an issue you're having with your iPhone. Your question is more of a product support one, so I'd suggest you ask it over at the Apple Support Forums. Thanks.
Replies
Boosts
Views
Activity
Dec ’25
Reply to Xcode is a mess!
Well, that's your opinion. I've managed to release a number of Swift apps without seeing the issues you describe. I've got no idea why you can't organise your folders properly. What's the problem? You ask why it's no longer possible to do something, but you haven't really explained what it is that you're missing. You can still right-click a file or folder and create a new group, new group from selection, new folder, and new folder from selection. And you can drag files and folders onto the Project pane and choose how they're added. I don't understand what it is that you're having a problem with? Rather than posting here, why not raise feedback tickets and explain where you're seeing issues? Give Apple a record of the problems and a chance to fix them. You can do that at: https://feedbackassistant.apple.com/ then post the FB number(s) here. Also, Xcode 26 is out, so you could try that out and see if any of your issues are fixed.
Replies
Boosts
Views
Activity
Dec ’25
Reply to SwiftUI Canvas
When you say you needed to "download iOS 26.1" do you mean via the "Add Platforms..." button? Just want to be clear so that anyone else who happens upon this thread knows what the actual solution is. Remember to mark an answer as correct so everyone knows there's a solution to the problem. Thanks!
Replies
Boosts
Views
Activity
Nov ’25
Reply to SwiftUI Canvas
Not sure if this is the issue, but you don't have any Simulators listed in the "Other Installed Platforms" section. Click the "Add Platforms..." button and add the iOS 26.1 Simulator, and see if the device picker appears. If not, you might have to add a simulator in the Window > Devices & Simulators > Simulators tab. Hopefully this fixes it.
Replies
Boosts
Views
Activity
Nov ’25
Reply to SwiftUI Canvas
Have you got any platforms downloaded in Xcode > Settings... > Components? Can you show us the #Preview macro you're using? What version of Xcode are you on?
Replies
Boosts
Views
Activity
Nov ’25
Reply to SwiftUI – How to completely remove the horizontal “ghost lines” inside List with Section and custom rows?
.listRowSeparator(.hidden) applies to a List's rows not the List itself. Every row in the List you want to hide has to have .listRowSeparator(.hidden) on it. It's granular; it allows you to decide which rows do and do not have a separator on them.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to SwiftUI – How to completely remove the horizontal “ghost lines” inside List with Section and custom rows?
Happy to help!
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to SwiftUI Canvas
Show us a screen grab of the bottom of the canvas. You should have something like this:
Replies
Boosts
Views
Activity
Nov ’25
Reply to The airdrop was sent to the wrong device. Will modifying the interface in this way reduce the error
These are the Developer Forums, where developers of third-party apps for Apple's platforms ask each other for hints and tips on coding. These forums are not where Apple's actual developers chat about new features. If you have a suggestion, you should raise it at: https://feedbackassistant.apple.com/
Topic: Design SubTopic: General
Replies
Boosts
Views
Activity
Nov ’25
Reply to How to collect a user's real email address when using Sign in with Apple and Private Relay?
Hide My Email is a service designed to allow users to HIDE THEIR EMAIL from apps and websites. To you, as the app developer, the email you are given is a valid email address, and you should treat it as such. The issue is in this bit of your post: For marketing reasons, I would prefer to have the user’s real email address instead of the relay email. You're not entitled to override someone's preferences and force them to receive marketing emails from you. Bypassing a Hide My Email address is doing exactly that. If the user decides they no longer want to receive emails from you, they can deactivate that email address and not receive your emails. That is their right. You have no right to override this, or to force someone to provide a different or non-'privaterelay' email address. If I download your app, and it refuses to allow a Hide My Email address, your app would be deleted immediately and I'd never use anything from you again. I'm pretty sure I'm not alone in this.
Replies
Boosts
Views
Activity
Nov ’25
Reply to new idea
Raise a suggestion at: https://feedbackassistant.apple.com/ then post the FB number here. Don't expect to receive any feedback from Apple unless they need clarification.
Replies
Boosts
Views
Activity
Nov ’25
Reply to I'd like to report an issue with the "App Referrer" source segmentation in the App Store Connect Analytics API.
Right, so report it: https://feedbackassistant.apple.com/ then post the FB number here.
Replies
Boosts
Views
Activity
Nov ’25
Reply to [UIKit Glass Effect] - Opacity change from 0 to 1 does not work
You should probably raise this as a bug in the usual way. It won't really get progressed if it's only posted in these Developer Forums. Raise it at https://feedbackassistant.apple.com/ and provide Xcode version and other relevant info. You should then post the FB number here so Apple devs can link it to this post.
Topic: UI Frameworks SubTopic: UIKit Tags:
Replies
Boosts
Views
Activity
Nov ’25
Reply to Contrast for texts in widgets with image backgrounds transparent mode
But I can't help you if I don't know how that widget has been created. How are the four images displayed? What modifiers are you using? Is that in Clear or Tinted mode?! I've suggested the code from WidgetKit that you can use to change the appearance of the image in the different widget styles. Can you maybe apply them to the four images in the widget and show us what it looks like in Clear and Tinted modes? .vibrant mode is used when a widget is on the Lock Screen, in StandBy, and also in Tinted and Clear modes, and you either don't show an image background, or - if your widget requires an image, like Apple's Photos widget - then you need to desaturate your image and accent your text. Try some different options, post the code used, and a screenshot of how it looks.
Replies
Boosts
Views
Activity
Nov ’25