Search results for

dsym file

77,666 results found

Post

Replies

Boosts

Views

Activity

Cannot Preview in this file. Simulator was shutdown during an update.
Hello, I am facing a recurring issue with Xcode iOS simulator (preview). I want to preview a SwiftUI for iOS in Xcode, but the Simulator app fails to boot up. I receive the following error in Xcode: Cannot Preview in this file. Simulator was shutdown during an update. I have tried the following: Completely uninstalling XCode and deleting all developer data, then reinstalling everthing again. Shutdown and restart Deleting all developer data, deleting XCode cache Reinstalling iOS Simulator runtimes and reconfiguration of simulators. Tested using different simulator and runtime versions. xcrun simctl --set previews delete al My reported issues: FB20987522 FB20485454 Thank you Best regards, Jens
5
0
342
2w
Reply to Transperent title bar changed to gray when refocus
When I tried to create the bug in new project, I found the solution.. First, I added .windowStyle(.hiddenTitleBar) to the WindowGroup in my main app file. It prepares the window to be borderless before the system even draws it. Standard applicationDidFinishLaunching logic was running too early for me. The OS was still setting up its default gray style and overwriting my code. I used a tiny timer to force my settings once the window is actually alive. func applicationDidFinishLaunching(_ notification: Notification) { // I used a 0.1s timer to catch the window AFTER the OS finishes its default setup Timer.scheduledTimer(withTimeInterval: 0.1, repeats: true) { timer in if let window = NSApplication.shared.windows.first { self.setupWindow(window) timer.invalidate() } } } Then re-apply the transparency and separator settings in the windowDidBecomeKey delegate method to stop the focus pop. func windowDidBecomeKey(_ notification: Notification) { guard let window = notification.object as? NSWindow else { ret
Topic: UI Frameworks SubTopic: General
2w
Reply to [FB21797091] Regression: Universal Links/AASA Fetching Fails for IDN on iOS 16+
Thanks for the post and thanks for the patience. Thank you for providing your app details and suggesting an efficient way to reproduce the issue. Using your existing App Store build is a great approach since all entitlements and deep linking configurations are already configured. Please include the APP ID in the bug. What I want from the team is an answer if AASA files allow none unicode URLs and with your code showing what you are trying to do will help get across to all the teams involved. In the focused sample, ddd your team’s App ID to your App Association File (AASA) so we can build and run your app directly. Looking forward to get to a resolution on this issue. Albert Pascual
  Worldwide Developer Relations.
Topic: App & System Services SubTopic: General Tags:
2w
Question Regarding Screenshot Submission
This is probably a silly question, but I just want to make sure. The screenshot submission states: Upload three screenshots of your app playground that best represent the user experience as .png or .jpg files. Do not upload handwritten notes, sketches, or outlines. For an Apple Pencil based app, can I sketch in the canvas to show the abilities of the app in the screenshots? I assume yes and that this only refers to submitting mock-ups of apps, but I wanted to be super sure I won't be going against the rules.
1
0
86
2w
Any (developer) option to override log quarantine?
We recently migrated our entire product to Apple Unified Logging due to the various benefits it provides. However we immediately started hitting the log quarantine problem (QUARANTINED DUE TO HIGH LOGGING VOLUME). This is partly because we are indeed over logging in a few cases (which we have to work on fixing), but also partly because it's a complicated product with potentially hundreds of libraries, and some of the code can legitimately be very busy. For example we have a system extension that's implemented both as a NetworkExtension client and an EndpointSecurity client, if we were to log decent information about each network or file system event so we can troubleshoot something, they are bound to be high volume logs. Now when our app is running in a normal user environment, this is not a problem. We can disable certain heavy log levels, or at least disable persisting for certain logs (one of the benefits of Apple Unified Logging we really like is that it allows very flexible controls, log config
7
0
300
2w
Reply to Pending Termination under Section 3.2(f) – Seeking Guidance on Additional Steps for App Review Board
Thank you for your post. If you disagree with the outcome of the review, we recommend submitting an appeal to the App Review Board. When filing your appeal, make sure to: Provide specific reasons why you believe your app complies with the App Review Guidelines. Submit only one appeal per rejection. Respond to any requests for additional information when submitting an appeal. Once you have submitted the appeal we can escalate it to the App Review Board for review. The App Review Board will contact you directly as soon as they've completed their investigation.
2w
Reply to UITab memory leak
Hello patatrouf, Thank you for all of the additional investigation. If you'd like to be automatically notified via Feedback Assistant, you can always file a bug report and I'll make sure it issues you updates accordingly. Hello Moff, Thanks for filing your bug report! I've made sure to route it to the right team. Glad to be working together, Richard Yeh  Developer Technical Support
Topic: UI Frameworks SubTopic: UIKit
2w
Reply to System Panic with IOUserSCSIParallelInterfaceController during Dispatch Queue Configuration
I believe you filed a bug asking about this earlier, and I have my own bug on this (r.169737319). It fell off my radar for a bit, but I've asked the team for some guidance on the right way to handle this today. Following up on myself after talking with the team, here is how I would suggest handling this: In the first call to UserProcessBundledParallelTasks, you should: Store the OSAction you receive into your DEXTs own ivars. Intentionally retain() that OSAction. This retain will NOT be balanced, so you're intentionally over-retaining the OSAction (it will be destroyed when your DEXT is). You can actually retain it a few times if you want. On all future calls to UserProcessBundledParallelTasks, assert that the OSAction you receive is the same as the action you received in #1, intentionally crashing if it changes. Note that the point of #3 is NOT to detect a valid state you should anticipate or handle. It's purely there as an overall safety check that will either never trigger or will trigger years fr
Topic: App & System Services SubTopic: Drivers Tags:
2w
Reply to iOS 26.0+: sceneDidBecomeActive / applicationDidBecomeActive fires during Lock button press while app is active
Hello @stopthatnoise Can you share that new project with me to investigate? If so, please share a link to your test project. 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. If this is a bug, you can file a bug report here and attach the project there, and I will escalate as needed. Feel free to file now and reply with the FB number in this thread, so we can get a head start on the investigation.  Travis Trotto - DTS Engineer
Topic: UI Frameworks SubTopic: UIKit Tags:
2w
Reply to SwiftUI List: observable reference types not deallocated immediately after refresh
Hello @yassinfromcolombes Are you able to create a focused test project that runs and demonstrates the issue? If possible, I would like you to file a bug report and attach the test project as an attachment. Reply with the FB number and I will be able to investigate with the relevant engineering team accordingly. If you're not familiar with preparing a test project, take a look at Creating a test project. Thanks!  Travis Trotto - DTS Engineer
Topic: UI Frameworks SubTopic: SwiftUI Tags:
2w