Post

Replies

Boosts

Views

Activity

Instruments in Xcode 15.3 not showing symbols
When using Instruments in Xcode 15.3 on macOS Sonoma 14.3.1 symbols from system frameworks are not displaying. I've tried creating a template "App" project and running it on the iOS 17.4 simulator without any code changes and still am not seeing symbols so I can be sure it's not unique to my real-world project build settings. If I install Xcode 15.0 and run the same build in the same 17.4 simulator using Instruments 15.0 it shows thread names and symbols for UIKit and other frameworks but is still missing SwiftUI symbols. Instruments 15.3 Instruments 15.0 I've spent 2 days trying to narrow down why I couldn't debug my app and even deleted all my partitions and reinstalled macOS which didn't fix the issue.
6
1
3.0k
Sep ’24
Fix actor-isolated class is different from nonisolated subclass error
I'm trying to migrate my fairly large application to Swift Concurrency. I've have a class marked as @MainActor that sub-classes a 3rd party abstract class that is not migrated to Swift Concurrency. I get the following error: Main actor-isolated class 'MyClass' has different actor isolation from nonisolated superclass 'OtherAbstractClass'; this is an error in the Swift 6 language mode My class needs to be MainActor as it uses other code that is required to be on the MainActor. I can't see how to suppress this warning, I know as a guarantee that the abstract class will always be on the main thread so I need a way of telling the compiler that when I don't own the 3rd party code. import OtherAbstractModule @MainActor class MyClass: OtherAbstractClass { .... } How can I satisfy the compiler in this case?
1
0
1.8k
Jun ’24
Digital Services Act Compliance Error
Everytime we go through the process to supply and verify all our contact details as a trader for the "Digital Services Act Compliance" when we get to the very end and submit all the verified details we get the error "Something went wrong. Please try again". Having tried again multiple times including logging out and loggin in again. I've even inspected the network traffic and Apple's server is returning the response: { "message": [ { "type": "error", "messageKey": "PPM.generic.unableProcessRequest" } ] } How are we to proceed given this is a enfored requirement by Apple and is preventing us supplying new builds?
3
0
1.2k
Mar ’24