Skip to content

Instantly share code, notes, and snippets.

View myawesomehub's full-sized avatar
💛
Exploring

Mohammad Yasir myawesomehub

💛
Exploring
View GitHub Profile
//
// Date+extension.swift
//
// Created by swift-al-dente on 31/10/21.
//
import Foundation
extension Date {
var firstDayOfWeek: Date {
@bizz84
bizz84 / ICloudUserIDProvider.swift
Created February 7, 2017 10:35
Code to get iCloud unique user ID or prompt user to sign in to iCloud
import CloudKit
enum ICloudUserIDResponse {
case success(record: CKRecordID)
case failure(error: Error)
case notSignedIn(accountStatus: CKAccountStatus)
}
class ICloudUserIDProvider: NSObject {