일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- Appearance변경
- NotificationCenter
- segue
- MapKit
- image
- android
- cocoapods
- CoreLocation
- swiftUI
- 코딩테스트
- EventKit
- 백준
- ViewModifier
- UIStackView
- UserDefaults
- ios15
- SwiftUI_Preview_Provider
- kakaomap
- Kotlin
- format형식
- programmers
- pod install
- ios
- SWIFT
- Alert
- alamofire
- Java
- snapkit
- AsyncImage
- autolayout
Archives
- Today
- Total
목록EventKit (1)
감자주먹밥
[IOS] EventKit 달력, 미리알림 이벤트 관리
EventKit 달력, 미리알림 어플의 데이터에 접근 하여 이벤트를 생성, 검색, 편집을 할 수 있는 프레임워크. 먼저 사용하기 전, info.plist에 권한 체크를 받아야 한다. let status = EKEventStore.authorizationStatus(for: .event) switch status { case .notDetermined: //아직 권한 팝업 뜨기 전 let accessGranted = try await ekStore.requestAccess(to: .event) guard accessGranted else { throw ServiceError.accessDenied } case .restricted: throw ServiceError.accessRestricted case ..
IOS/UIKit
2023. 4. 5. 18:57