Search results for

dsym file

77,694 results found

Post

Replies

Boosts

Views

Activity

Reply to How do I build a framework and be able to use it within the same project
Thanks for the post, love you selected emoji! This a great post for developers to provide their opinion on how they will handle that situation. In my modest opinion I would make sure the framework is build for external use and reference in the project as an external framework, if the code is part of the project, you can just include the file you want instead of using it as a framework. Otherwise just build the framework and use it as you would be using an external framework. Ensure that the framework search path includes the directory containing your framework bundle. You typically want to point to the or directory inside . Alternatively, use which automatically points to the correct build directory depending on the scheme (Debug/Release). If your framework is custom and part of the same project, ensure it's added to the Link Binary With Libraries phase of your app target. Consider copying the framework into the app bundle if needed by setting up a Copy Files build phase. If your framework a
Jan ’26
Reply to Feature / Workaround wanted: Seamless, Automated AirPlay Screen Streaming on visionOS for Demos
Thank you for filing FB20945868. Checking on the status it has been assigned to the AirPlay team for investigation. Our policies do not allow me to comment on future Apple business so that's all I can say today. Please note that filing an enhancement request does not guarantee Apple will add any requested functionality to Apple products in the future. However, with that said, filing an enhancement request is a good way to get your ideas in front of the folks who make decisions about that sort of thing.
Topic: Media Technologies SubTopic: Streaming Tags:
Jan ’26
How to eliminate frameworks from being picked up by Xcode
I wrote my own framework and it uses some OpenGL calls, I have my own direct replacements for these calls. But Xcode complains when I try to integrate these calls into a NSApp that all of these calls are deprecated. It must be in some module that Appkit or Cocoa uses to include all the headers as I went through and eliminated all potential references. I could just encapsulate all of this in a separate C or C++ file, but I would rather write it all in Obj-C. I know it's just a warning, but I like to treat warnings as errors to catch as many bugs as possible.
1
0
103
Jan ’26
Reply to Is there any way to control alarm volume independently when using AlarmKit?
Thank you for your question. The volume control of third-party applications is primarily managed by the user, not the developer. AlarmKit does not directly support volume customization beyond utilizing the system ringer volume. As far as I can see, there is no API in AlarmKit that allows for volume modification neither. Given that AlarmKit does not support volume control, consider using it to handle audio playback for alarms. This approach provides you with complete control over the audio, including volume settings. You can schedule local notifications to trigger an alert, and when the notification is triggered, use or to play your custom alarm sound at a user-defined volume. Hope this helps and answers your questions, you can file an enhancement request if you want. Albert Pascual
  Worldwide Developer Relations.
Topic: App & System Services SubTopic: General Tags:
Jan ’26
Reply to Create a new GitHub Remote Repository - Unknown Error
Thank you for your compliment. Hope my boss is reading this :-) I am pleased that you have identified the issue. However, you have raised an important point. It appears that the error messages displayed on the website are not rendered in Xcode. I need to verify this information and would be grateful if Xcode could provide the same error message as the website. If you are willing to assist, I may request that you file an enhancement request to address this issue. Albert Pascual
  Worldwide Developer Relations.
Jan ’26
Reply to application(_:didFinishLaunchingWithOptions:) not called on MDM iPads after overnight idle — app resumes without cold start
Hi Kevin, The sysdiagnose files are quite large (3 files, ~250–300 MB each), so we’ve uploaded them to Google Drive. Drive link: https://drive.google.com/drive/folders/1RyEuo2zCoNHyHMUD8cVQqW3mZWki3aN0?usp=sharing These correspond to the issue we encountered again on January 16. Please review and let us know if you need anything else from our side. Thanks, Manish
Jan ’26
Reply to Xcode 16 issues with mac virtualisation
It’s better to reply as a reply, rather than in the comments; see Quinn’s Top Ten DevForums Tips for this and other titbits. On what product shall I add the feedback. In Feedback Assistant, first choose Developer Tools & Resources and then choose XCTest from the “What area” popup. Please post your bug number, just for the record. Finally, I have a lot of hints and tips on how to file bugs effectively in Bug Reporting: How and Why? Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Jan ’26
Reply to Value of type 'URLResourceValues' has no member 'tagNames'
Tag names are not available on iOS. Xcode does a pretty good job of explaining that. Consider this snippet: let values = try url.resourceValues(forKeys: [.tagNamesKey]) // ^ 'tagNamesKey' is unavailable in iOS let tags = values.tagNames ?? [] That fact is also reflected in the documentation for the tagNamesKey property. I’m not sure why the documentation for the tagNames property gets this wrong, but it’s definitely a bug in the docs and I encourage you to file it as such. Please post your bug number, just for the record Taking a step back, I can see why you might want to work with tags on iOS, so I encourage you to file a separate enhancement request asking for this property to be made available there. Again, please post your bug number. Share and Enjoy — Quinn “The Eskimo!” @ Developer Technical Support @ Apple let myEmail = eskimo + 1 + @ + apple.com
Topic: App & System Services SubTopic: Core OS Tags:
Jan ’26
ML contraints & Timeout clarificaitions for Message Filtering Extension
Hello everyone, I’m currently working with the Message Filtering Extension and would really appreciate some clarification around its performance and operational constraints. While the extension is extremely powerful and useful, I’ve found that some important details are either unclear or not well covered in the available documentation. There are two main areas I’m trying to understand better: Machine learning model constraints within the extension In our case, we already have an existing ML model that classifies messages (and are not dependant on Apple's built-in models). We’re evaluating whether and how it can be used inside the extension. Specifically, I’m trying to understand: Are there documented limits on the size of an ML model (e.g., maximum bundle size or model file size in MB)? What are the memory constraints for a model once loaded into memory by the extension? Under what conditions would the system terminate or “kick out” the extension due to memory or performance pressure? Message process
0
0
212
Jan ’26
watchOS standalone app shows solid black icon in review
Hey all, I am a first time publisher navigating the App Review process. I want to publish a watchOS only app, but keep getting this feedback: Regarding 4.0, Apple Watch app icon's background color is still black. Based on our investigation, you have included plain black icons. To resolve this issue, it would be appropriate to modify your app's Apple Watch app icon to include a lighter background color to ensure that it is recognizable and appears circular on Apple Watch. I set the following configs: Project -> Targets -> Apple Watch App -> App Icons & Launch Screen -> App Icon set to my Icon Composer file. Checked App Icons Source. I was able to install my build through TestFlight and successfully install on my watch, and the App Icon displays properly there. I also saw a recent Reddit post from another developer facing the same issue. I can't link that post, but will share this post with the OP. I attached what the reviewer sent me with the rejection.
8
0
452
Jan ’26
Reply to Git Integration needs serious work.
Project Navigator file SCM status has been wonky from the first beta release of Xcode 26, and continues to be with version 26.2. It matches actual Git state perhaps 50% of the time, and needs a complete restart of Xcode to refresh. Someone needs to attend a refresher State Machines 101 course. It seems likely this situation affects all Git interactions in Xcode 26. Best option is using external client, cli or GUI.
Jan ’26