일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- 서체관리자
- AnyObject
- Startign Assignments
- 클로저의 캡슐화
- CoreLocation
- RunningTimer
- App Store Connect
- UIAlertAction
- weatherKit
- UICollectionViewFlowLayout
- dispatchsource
- Timer
- Protocol
- Xcode
- 단일 책임원칙
- 영문 개인정보처리방침
- MKMapViewDelegate
- WeatherManager
- 러닝타이머
- weak var
- 러닝기록앱
- Required Reason API
- swift
- font book
- CLLocationManagerDelegate
- 한국어 개인정보처리방침
- xcode로 날씨앱 만들기
- addannotation
- SwiftUI Boolean 값
- MKMapItem
- Today
- Total
목록러닝기록앱 (2)
VesselWheel
코어데이터를 활용하기 위한 CoreDataManager 더보기 // // CoreDataManager.swift // Run-It // // Created by t2023-m0024 on 2/29/24. // import Foundation import CoreData import KakaoSDKUser class CoreDataManager { static let shared = CoreDataManager() private init() {} // MARK: - Core Data stack lazy var persistentContainer: NSPersistentContainer = { let container = NSPersistentContainer(name: "Run_It") container...
https://medium.com/@Ariobarxan/ios-application-scene-delegate-vs-app-delegate-a-talk-about-life-cycle-a2ecae9d507e iOS Application Scene Delegate VS App Delegate(A talk about Life cycle) Preface medium.com IOS 13부터는 AppDelegate와 SceneDelegate의 책임이 구분되었다. -> 해석하자면, AppDelegate는 과거에 출시, 종료, 시스템 수준 이벤트 처리 등 앱의 전반적인 라이프사이클을 처리한다. 초기 앱 환경 설정, 앱 수준의 데이터 및 리소스 관리, 푸시 알림 처리 등을 담당한다. 반면에 SceneDelegate는 여..