Search results for

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

186,347 results found

Post

Replies

Boosts

Views

Activity

Reply to Swift Student Challenge
Hello @itsakhand18 and thank you @lijiaxu ! Your submission must be an app playground that's built with and runs on Swift Playground 4.6 or Xcode 26 or later. At the moment, app playgrounds do not support watchOS. I know you asked a while ago but with the challenge beginning so soon, I wanted to confirm. Good luck!  Travis Trotto - DTS Engineer
2w
Reply to How does Xcode26.3 Agent know about the API Documentation for non Apple Intelligence
XcodeRead - Read files from the project XcodeWrite - Write files to the project XcodeUpdate - Edit files with str_replace-style patches XcodeGlob - Find files by pattern XcodeGrep - Search file contents XcodeLS - List directory contents XcodeMakeDir - Create directories XcodeRM - Remove files XcodeMV - Move/rename files BuildProject - Build the Xcode project GetBuildLog - Get build output RunAllTests - Run all tests RunSomeTests - Run specific tests GetTestList - List available tests XcodeListNavigatorIssues - Get Xcode issues/errors XcodeRefreshCodeIssuesInFile - Get live diagnostics ExecuteSnippet - Run code in a REPL-like environment RenderPreview - Render SwiftUI previews as images DocumentationSearch - Search Apple docs and WWDC videos XcodeListWindows - List open Xcode windows The above is a list of MCPTools exposed by Xcode. Im am interested in the DocumentationSearch Tool . Here Xcode is able to search only Apple Docs. Lets say i am using a custom .xcframework or i have added HTML Do
2w
Reply to [FB21797091] Regression: Universal Links/AASA Fetching Fails for IDN on iOS 16+
Thank you, Albert. I'm glad the issue has been routed to the correct team. Before I prepare a sample project, I'd like to suggest a simpler approach: Our app is already available on the App Store: https://apps.apple.com/jp/app/id1635254205 Your engineers can download it directly and reproduce the issue with the following steps: Download and install the app from the App Store Open the Notes app Create a note with this URL: https://求人ボックス.com/password-mail Tap the link Expected: The app should open Actual: Safari opens instead This would be the fastest way to verify the issue without needing a separate sample project, since all the necessary entitlements and AASA configurations are already in place. If you still require a sample project or TestFlight build, please let me know: Should I add your team's App ID to our AASA so engineers can build and test with our domain? Or would you prefer a TestFlight build? (Please provide an email address for external tester access) How shou
Topic: App & System Services SubTopic: General Tags:
2w
Is it necessary to submit the app for review and complete the review process in order to respond to the age restriction survey?
Or, can we consider the response completes once the prompt disappears? I will write down the sequence of events in order. A prompt appeared on our app's page asking us to respond to the survey. However, likely because the app hadn't been updated for many years, the “Edit” option for age restrictions was not displayed; instead, “View” was shown. After creating a page for the new app version, “Edit” appeared. We hadn't planned to release the new version to the App Store at this time, but we only created the new page to respond to this survey. After entering “edit” and answering the age restriction survey, the prompt disappeared. I contacted Apple Support to find out if just answering would suffice, but they told me to submit the app for review. However, as mentioned above, we have no plans to modify and release this app. Since it's an old app, I updated the environment, built it, and submitted it, but issues were pointed out. (I think it's because it's an old app.) When I asked the Apple Review team th
0
0
139
2w
Background Assets: Second and subsequent download cancellations fail (iOS 26.0–26.3 RC)
Summary I'm using Background Assets to download Apple-hosted Asset Packs(downloadPolicy = onDemand). The first download cancellation succeeds, but on the second and subsequent downloads, progress.cancel() fails to work and the download completes to the end. Environment iOS 26.0 – 26.3 RC (all produce the same result) Xcode Version 26.2 (17C52) Using Apple-hosted Asset Packs Steps to Reproduce Start downloading an Asset Pack Call progress.cancel() during download → Succeeds Start downloading the same Asset Pack again Call progress.cancel() during download → Fails (download completes to the end) Observed Error Logs After 1st cancellation: A download with the ID X-XXXXXXXX-XXX failed: Error Domain=NSURLErrorDomain Code=-999 cancelled ↑ This is expected (cancellation succeeded) The fact that version 0 of the asset pack with the ID X-XXXXXX-XXX finished being downloaded couldn't be reported: Error Domain=NSCocoaErrorDomain Code=3851 Property list invalid for format: 200 (property lists cannot contain obje
1
0
85
2w
Reply to How does Xcode26.3 Agent know about the API Documentation for non Apple Intelligence
Thanks for the post, can you provide more information about what you are trying to accomplish? Guessing to create your own documentation files? There are many 3rd party solutions for creating documentation out there, Xcode’s built-in documentation viewer and support are primarily tailored to Apple’s own frameworks. 
I believe that if your SDK includes HTML documentation stored locally or hosted on a server, you can add a custom entry in Xcode → Preferences → Locations → Documentation to point to your documentation URL. This won’t integrate with Quick Help but will allow you to browse the docs via Xcode’s browser view? But I am not completely positive how to do that in latest versions of Xcode. Any HTML documentation can be browsed using a local browser. Xcode does not currently expose public APIs to connect to custom MCP (Web Service Discovery) servers for API documentation. The Claude settings you mentioned are unrelated to Xcode’s documentation capabilities and cannot be used to modify how
2w
Reply to System Panic with IOUserSCSIParallelInterfaceController during Dispatch Queue Configuration
Part 2... Does this indicate a specific alignment restriction, memory fragmentation, or a resource conflict on Apple Silicon? No, I don't think anything like that is going on. Synchronization for Memory Visibility: To ensure that the virtual address mapping established in UserMap... is globally visible across all CPU cores and execution contexts before the kernel issues the first Bundled Task, are there recommended synchronization primitives or Memory Barrier calls? No, I don't think any special synchronization is required. If you're tracking the buffer through a direct pointer, then the relative gap between UserMapBundledParallelTaskCommandAndResponseBuffers and the first possible call to BundledParallelTaskCompletion is so large that any kind of synchronization is unnecessary. This is also a fine reason to not bother holding/freeing the IOMemoryMap— if you never free your buffer pointer, then its values will only EVER be NULL (uninitialized) or its valid value (post initialized). The more I think about this
Topic: App & System Services SubTopic: Drivers Tags:
2w
Reply to System Panic with IOUserSCSIParallelInterfaceController during Dispatch Queue Configuration
Part 1... However, a subsequent call to ivars->fResponseMap->GetAddress() returns NULL (0x0). Subsequent call when? The expectation (and what our driver does) is that you'd immediately call GetAddress() and then basically never look at the map again. In one of our drivers, that never is quite literal. The code is basically: IOMemoryMap *memoryMap = NULL; if ( parallelCommandIOMemoryDescriptor->CreateMapping(0, 0, 0, 0, 0, &memoryMap) == kIOReturnSuccess ) { ivars->fCommandAddress = memoryMap->GetAddress(); } ... if ( parallelResponseIOMemoryDescriptor->CreateMapping(0, 0, 0, 0, 0, &memoryMap) == kIOReturnSuccess ) { ivars->fParallelResponseAddress = memoryMap->GetAddress(); } ...and, yes, that code leaks two IOMemoryMap's. I don't know what the exact thinking was, but I suspect they realized that the only reason that mapping would ever become invalid/useless was because the driver was being torn down, so freeing doesn't really matter. I'll admit, there is a certain charm to tha
Topic: App & System Services SubTopic: Drivers Tags:
2w
Reply to Impossible to Complete Developer Enrollment or Get Support
I am having such a hard time also. It's like no one is minding the store. So frustrating. I sent an email 4 days ago-no response. Just got Apple support after a lengthy wait I just spoke to my senior advisor and there is no department to transfer you to. You have to go to the Apple developer site and contact support there. Crazy. God bless Mr. Cook to get out of the mess they got going on there. Maybe Google took over and they're running around like ckekens without a head but still getting a paycheck. I read Apple is letting Google take the reins on their AI. They already paid to completely infiltrate our beloved iOs platform which we pay so much for. Aughhhh!!!!!
2w
Reply to Delete Confirmation Dialog Inside Toolbar IOS26
Figured out the implementation! For anyone interested in implementing in IOS 26+ @Namespace private var namespace @State private var presentDialog: Bool = false and in the toolbar ToolbarItem(placement: .cancellationAction){ Button(role: .destructive) { presentDialog = true } label: { Text(Delete) } .confirmationDialog( Delete?, isPresented: $presentDialog, titleVisibility: .visible ) { Button(Delete, role: .destructive) { // perform delete } Button(Cancel, role: .cancel) { } } }
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2w
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