Post

Replies

Boosts

Views

Activity

Reply to Log Into Apple Account
Included is my function: func fetchUserRecordID() async throws -> CKRecord.ID { let container = CKContainer.default() do { let recordID = try await container.userRecordID() print("User record ID: \(recordID.recordName)") return recordID } catch { // Handle error throw error } }
Dec ’24