Post

Replies

Boosts

Views

Activity

Reply to Apple silicon Macs support issue
I've started getting these issues in the last week. If I archive and upload the same codebase (reverting to previous commit) that was previously OK, I now get this issue ("The app links with libraries that aren’t present in macOS: /usr/lib/swift/libswiftCloudKit.dylib"). Seems like it must be a change on the App Store Connect side -- or possibly caused by a macOS software update (since the version of Xcode I've been using is unchanged - Xcode 16.0). I'm stumped.
Oct ’24
Reply to Xcode error: Abort Trap 6
Encountered this compiler crash when a guard case is followed by a let (FB9643656). E.g.: let value = CollectionDifference.Change.insert(offset: 1, element: 1, associatedWith: nil) guard case .insert(_, _, let associatedWith) = value, let associatedWith = associatedWith else { return } But splitting the two guarded conditions into separate guard statements solves the issue.
Topic: Programming Languages SubTopic: Swift Tags:
Sep ’21
Reply to Apple silicon Macs support issue
I've started getting these issues in the last week. If I archive and upload the same codebase (reverting to previous commit) that was previously OK, I now get this issue ("The app links with libraries that aren’t present in macOS: /usr/lib/swift/libswiftCloudKit.dylib"). Seems like it must be a change on the App Store Connect side -- or possibly caused by a macOS software update (since the version of Xcode I've been using is unchanged - Xcode 16.0). I'm stumped.
Replies
Boosts
Views
Activity
Oct ’24
Reply to ITMS-90863: Macs with Apple silicon support issue (iCloud library)
I've been having this issue for the past few days, despite making no code changes to my app (I even went back and re-built my codebase at a point that was previously OK, and got the issue still. Cannot figure out what's going on!
Replies
Boosts
Views
Activity
Oct ’24
Reply to [iOSAppOnMac] ShareKit: Crashes in SHKItemIsPDF() or -[SHKSaveToFilesSharingService saveFileURL:completion:]
I also am facing this crash, in my case my using a SwiftUI ShareLink with a FileRepresentation specifying any file-like exportedContentType. Did you find a solution?
Topic: UI Frameworks SubTopic: UIKit
Replies
Boosts
Views
Activity
Aug ’24
Reply to After iPadOS 17.4, AVCaptureMetadataOutput no longer detects QR codes on some devices.
iOS 17.4.1 still has the issue for barcodes (QR code issue was resolved). No official notification from Apple though. There's a Stack Overflow about this too: https://stackoverflow.com/questions/78128010/ipados-17-4-avcapturemetadataoutput-delegate-not-called-qrscanner
Replies
Boosts
Views
Activity
Apr ’24
Reply to Xcode error: Abort Trap 6
Encountered this compiler crash when a guard case is followed by a let (FB9643656). E.g.: let value = CollectionDifference.Change.insert(offset: 1, element: 1, associatedWith: nil) guard case .insert(_, _, let associatedWith) = value, let associatedWith = associatedWith else { return } But splitting the two guarded conditions into separate guard statements solves the issue.
Topic: Programming Languages SubTopic: Swift Tags:
Replies
Boosts
Views
Activity
Sep ’21