Search results for

Building for iOS Simulator, but the linked and embedded framework ‘XX.framework‘ was built for

186,349 results found

Post

Replies

Boosts

Views

Activity

Reply to Orange menu bar icon that won't go away
Thanks so much for the post. Can you produce an image so we understand exactly what you see? You can upload the picture here. Are you reproducing it with the simulator? Can you also produce a simple focused project that reproduces the issue? That'll help us better understand what's going on. If you're not familiar with preparing a test project, take a look at Creating a test project. Thanks, Albert Pascual
  Worldwide Developer Relations.
2w
Tried to pay for the Developer Program 7 times - still stuck
Hi, I tried to sign up for the Developer Program 7 times, starting on January 5th. It's now been a month. I contacted customer support, they said to try enrolling through the Apple Developer App. I tried that, it asked me to do an identity verification, which I did, successfully. Then the enroll button on the app got grayed out and it says: Enrollment through the Apple Developer app is not available for this Apple Account. Visit http:// developer.apple.com/programs/enroll/. I go to that link, I click continue with your enrollment, I pay the $99, it goes through, I don't get charged anything, just a $0.00 authorization transaction, then get the Order Acknowledgment email, then nothing happens, it just goes nowhere. Please help. If there is anything I can do, or any more information I should supply for this to go through. I contacted support multiple times, but I don't get any response. My enrollment ID is DPTB3R8T2Z.
0
0
119
2w
Reply to SwiftUI onChange fires twice when filtering data from @Observable store
@DTS Engineer Thanks a lot for the detailed explanation — that makes sense. It seems that when migrating directly from ObservableObject to @Observable, extra care is needed around update ordering and intermediate states. In my case, this behavior leads to unexpected UI results, such as the scroll position ending up in an incorrect state (as shown in the screenshot above). I can consistently reproduce this on a real iPad Pro (M4) running iOS 26.2.1, where the UI visually jumps and then settles at an unintended position. I’ll need to adjust my approach to work around this behavior. I’d also be very interested to hear more from the SwiftUI team on the intended patterns or best practices for avoiding these intermediate states in UI code.
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2w
Reply to UITab memory leak
I've just run into this issue and I can confirm that the memory leak does not occur on iPhone (iOS 18.7.1 and iOS 26) even when using UITabs occurs on iPad (iOS 18.7.1) only when using UITabs. It does not occur when setting the tab bar controller children the old way (setViewControllers(:animated:)). A work around is to use a custom TabBarController inheriting from UITabBarController and override viewDidDisappear(:) as follows: override func viewDidDisappear(_ animated: Bool) { super.viewDidDisappear(animated) // HACK: clear the tabs property to prevent memory leaks when using UITabs if #available(iOS 18, *) { setTabs([], animated: false) } } It effectively triggers the children view controllers deinit. App build with Xcode 26.2 on macOS 26.2.
Topic: UI Frameworks SubTopic: UIKit
2w
Reply to Tahoe 26.2 and Xcode
Oh thanks! That might work. I had only tried Xcode 16. I need to be able to work on the project at home and in the college lab. My current home projects won't build in college. There will also be an issue with grading of assignments. I'll try Xcode 16.4. Will that work in college I wonder? They have Xcode 16? I'll try anyway. Thanks so much for you reply!
2w
Reply to com.apple.developer.payment-pass-provisioning missing in TestFlight build despite provisioning profile having it
Hi Quinn, I followed your steps and the profile dump is as below. It has com.apple.developer.payment-pass-provisioning => 1 : { AppIDName => XC com s_ _ _ _ _ _ d ApplicationIdentifierPrefix => [ 0 => 2 _ _ _ _ _ _ 7 ] CreationDate => 2026-02-05 15:09:44 +0000 DER-Encoded-Profile => {length = 3857, bytes = 0x30820f0d 06092a86 4886f70d 010702a0 ... 73b0c49b eb3ffec9 } DeveloperCertificates => [ 0 => {length = 1487, bytes = 0x308205cb 308204b3 a0030201 02021007 ... b474d99f 14730350 } ] Entitlements => { application-identifier => 2 _ _ _ _ _ _ 7.com.s _ _ _ _ _ _ d aps-environment => production beta-reports-active => 1 com.apple.developer.associated-domains => com.apple.developer.in-app-payments => [ 0 => merchant.com.s_ _ _ _ _ _ d ] com.apple.developer.networking.slicing.appcategory => [ 0 => communication-9000 1 => games-6014 2 => streaming-9001 ] com.apple.developer.networking.slicing.trafficcategory => [ 0 => defaultslice-1 1 => video-2 2 =
Topic: Code Signing SubTopic: Entitlements Tags:
2w
Error generating domain certificate
I’m having an issue verifying a domain for a Merchant ID. I’m implementing Apple Pay on the web for a demo, and I’ve configured the Azure server to match Apple’s requirements for domain verification, such as the TLS configuration, not requiring client certificates, and ensuring there are no redirects. I’ve run tests with OpenSSL and PowerShell and all responses return HTTP/1.1 200 OK. I also tested the URL Apple says it uses to validate the file under .well-known, and it does show the expected result. I already have the Apple Pay Payment Processing Certificate and the Apple Pay Merchant Identity Certificate approved; the only thing missing is the domain verification. I’m not sure what else to test—if you could help me with a possible solution, I’d really appreciate it. (The project is built in .NET 8 and hosted on Azure App Service.)
0
0
124
2w
Reply to [FB21797091] Regression: Universal Links/AASA Fetching Fails for IDN on iOS 16+
Thank you, Albert. I have already filed this issue as FB21797091 at the beginning of this thread. I have now added additional diagnostic information to that existing report, including: Detailed swcutil_show.txt comparison between IDN and ASCII domains Entitlement configurations tested over 3 years Testing timeline across iOS 16, 17, and 18 Please reference FB21797091 for the complete bug report. Thank you for your assistance in escalating this issue.
Topic: App & System Services SubTopic: General Tags:
2w
Reply to Cannot Preview in this file. Simulator was shutdown during an update.
It looks like the underlying issue is still not resolved, and the only workaround is to give things enough time to complete. My suggestion would be to: build+run your app targeting the iOS simulator. This will launch the simulator app and start booting the simulator wait until the simulator finishes launching and your application is now running in it. Please note, the bug is that step 2 takes longer than it should so this is where you'll need to exercise patience. Once that successfully completes you can then quit the simulator, and then try the preview again. This time we'd expect things to work in the preview canvas since the simulator runtime has been primed.
2w
Reply to Expected behavior of searchDomains
Thanks for those answers. The ultimate consumer of the matchDomainsNoSearch property is actually in Darwin, so you can see how the code works. Start here. As you can see, the behaviour is pretty straightforward: If that property is set, it skips the code that adds the match domains to the search domains. However, it’s still not obvious why this is affecting your setup. One possibility relates to the example you included in your original post, where you have test.com in both the search domains and the match domains. In that case setting matchDomainsNoSearch causes it to add the match domains to the search domains, as shown by the code referenced above, and that code can change the order of items in the search domains. However, without knowing exactly how this is set up, it’s hard to tell whether that’s relevant here. I realise that you’re testing this on iOS, but do you also have the ability to test on macOS as well? If so, you could take advantage of macOS’s additional debugging features to learn mor
2w
Cannot change my contact address
On the following developer account page, you have the ability to update your address information, but it does not appear to be working for me. If you go to https://developer.apple.com/account and scroll down the page. You come to a section called Membership Details with a link to update your information. When you click on this link it shows a dialog which has two choices. One is for Change Contact Details and the other is for Switch to Organization Membership. When I attempt to Select Change Contact Details. Nothing happens at all. No screen is shown. Nothing, whatsoever. Please advise what the problem might be thank you. I need to change my contact address.
5
0
273
2w
Copyright infringement in an app distributed long-term via TestFlight
Hello everyone, I’m reaching out from the music publishing side and would appreciate guidance from developers or anyone familiar with TestFlight governance. We’ve identified an app that has been distributed via TestFlight for an extended period (regular renewals, updates, and new TestFlight builds). The app’s core functionality involves publishing copyrighted musical works (sheet music), without authorization from the authors or rightsholders. We have attempted to contact the developer using the contact details available through the TestFlight listing and associated project information. To date, we have received no response, and the TestFlight distribution continues. From our perspective, the developer appears to rely on TestFlight to keep the app off the App Store, where standard copyright enforcement mechanisms would normally apply. My questions are: Does Apple consider long-term, continuously renewed TestFlight distribution to be a form of public distribution? Is there a mechanism within the Apple
1
0
132
2w