EKEventStore+Extensions.swift 298 B

1234567891011121314
  1. // LoopFollow
  2. // EKEventStore+Extensions.swift
  3. import EventKit
  4. import Foundation
  5. extension EKEventStore {
  6. func requestCalendarAccess(completion: @escaping (Bool, Error?) -> Void) {
  7. requestFullAccessToEvents { granted, error in
  8. completion(granted, error)
  9. }
  10. }
  11. }