Post

Replies

Boosts

Views

Activity

Reply to App ID limit reached without any information beforehand
That should be a weekly limit. You may also be able to delete app provisioning profiles from the device it is complaining about. You can also consider getting a paid account.
Replies
Boosts
Views
Activity
Aug ’25
Reply to How to add privacy manifest to iOS Xcode project
This is a developer helping developer site, for the most part. This is the wwdc23 video on getting started https://developer.apple.com/videos/play/wwdc2023/10060/ There are resource links below it. Google is your friend when it comes to finding things...
Replies
Boosts
Views
Activity
Aug ’25
Reply to How to add privacy manifest to iOS Xcode project
It is in the menu bar. Tap file, new, file from template. select App Privacy and click next.
Replies
Boosts
Views
Activity
Aug ’25
Reply to Is there a way to change my username?
There is a tread about how... https://developer.apple.com/forums/thread/780832
Replies
Boosts
Views
Activity
Aug ’25
Reply to How to add privacy manifest to iOS Xcode project
No need to shout. https://developer.apple.com/documentation/bundleresources/privacy-manifest-files
Replies
Boosts
Views
Activity
Aug ’25
Reply to Xcode 26 b4 stopped recognizing connected iPhone (MacOS 26)
Did you try unpairing the phone in xcode's device/simulator window?
Replies
Boosts
Views
Activity
Jul ’25
Reply to How to use protocols to support managing SwiftUI views from different modules ?
What about wrapping the provider view in a group view?
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to AppleTV Timezone Values Mismatch
and then I realize I can't read.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Position is Ambiguous for UILabel Warning for label I added programmatically
You might want to try adding the label to the content view. At the moment you are adding it to the cell itself.
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Jul ’25
Reply to AppleTV Timezone Values Mismatch
Are you allowing for daylight saving time? It is currently -6 hours relative to GMT.
Topic: App & System Services SubTopic: General Tags:
Replies
Boosts
Views
Activity
Jul ’25
Reply to Exceptions thrown with NSTextView and spell checker
If you click the pause/continue program execution button, is it actually crashing? At work we used to have the all exceptions breakpoint pause like that where an exception that was actually caught during our apps initialization.
Topic: UI Frameworks SubTopic: AppKit Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to SwiftUI @State var not sync in .popover
The notification happens using publishing. Only items included in the publishing notification will reflect the new state.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to SwiftUI @State var not sync in .popover
That code is running in willSet for the property.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
Replies
Boosts
Views
Activity
Jun ’25
Reply to What does the Xcode "Minimize Project References" checkbox do?
Select a project in the project navigator, select a project or target and select the file inspector tab. It is in the project documentation section. I found where it was recommended to resolve an issue, but the engineer didn't go into what it does https://developer.apple.com/forums/thread/776349
Replies
Boosts
Views
Activity
Apr ’25
Reply to UIScrollView in UIViewControllerRepresentable - UI freezes when content touches bottom SafeArea
Something I ran into is that if a viewcontroller's view is a UIStackView there is a layout loop created that crashes when it runs out of stack space. This happened if the stack view impinged into the safe area. Making it the subview of a UIView fixed it. This happened using UIKit.
Topic: UI Frameworks SubTopic: SwiftUI
Replies
Boosts
Views
Activity
Apr ’25