분류 전체보기213 URLSession 알아보기 URLSession은 networking을 위한 API 입니다. 사용할 때마다 순서가 잘 생각이 나지 않아서 정리해두려고 합니다 :) 작동 flow 1. URLSession 생성 let session = URLSession(configuration: .default) session의 configuration에는 4가지 종류가 있습니다. 1) no configuration: shared로 singleton을 이용하는 경우에는 configuration이 따로 적용되지 않습니다. 요청이 제한적인 경우에 사용하기 적합합니다. 2) default configuration: shared session과 매우 유사하지만 delegate을 사용해서 data를 더 많이 가질 수 있도록 할 수 있습니다 (-> 정확히 어떤.. 2023. 1. 16. Semantic Versioning - 버전 정하는 방식 나중에 버전 정할 때 참조하기! https://devopedia.org/semantic-versioning Semantic Versioning Software is almost always versioned to coordinate installation, upgrades and correct interfacing with other software. While a flat linear numbering such as 123, 124, 125… might do the job, Semantic Versioning (SemVer) presents a better numbering scheme. devopedia.org 2023. 1. 15. Missing package product <package name> 에러 해결 방법 Package.swift에 dependency를 추가하다가 Missing Package produdct 'packagename' 이라는 에러 발생 => File > Packages > Reset Package Caches 해준 다음 다시 build 하여서 해결 https://lxxyeon.tistory.com/150 [Xcode, Error]Missing package product [에러내용] Missing package product 'SnapKit' Missing package product [해결법1] File > Swift Packages > Reset Package Caches [해결법1] File > Swift Packages > Update to Latest Package Versions .. 2023. 1. 14. accessibility identifiers 추가하는 방법 UIView에 identifier를 추가하면 Constraint log를 조금 더 쉽게 볼 수 있습니다. Code로는 어떻게 추가할 수 있는 지 알아보겠습니다. private let button: UIButton = { let button = UIButton() button.setTitle("Button", for: .normal) button.backgroundColor = .systemBlue //accessibilityIdentifier & isAccessibilityElement 설정! button.accessibilityIdentifier = "button" button.isAccessibilityElement = true button.translatesAutoresizingMaskIntoCon.. 2023. 1. 13. CoreData 사용하기 안녕하세요! iOS에서 local database로 주로 사용하는 몇 가지 db 프레임워크나 라이브러리가 있습니다. 이번에는 Apple에서 제공하는 CoreData 프레임워크의 사용 방법에 대해서 알아보도록 하겠습니다. CoreData란? Persist or cache data on a single device, or sync data to multiple devices with CloudKit. Data를 하나의 기기 내부에 저장 또는 cache하거나, CloudKit을 이용해 여러 대의 기기에 data를 sync하기 위해 사용하는 framework 특징 - 공식문서에 나온 특징들: 영속성(Persistence) 변경사항의 Undo, Redo 백그라운드 데이터 작업 기능 동기화 기능 버전 관리 및 마이.. 2023. 1. 9. APNs에 대해서 알아보기! iOS app에서 push notification을 사용하기 위해서는 APNs를 사용해야 합니다. APNs는 Apple Push Notification service의 약자로 애플에서 푸쉬 알림을 위해 사용하는 API입니다. APNs는 Push Server와 Application 사이에서 token 검증을 하는 중간다리 역할을 합니다. Push Server는 필요에 따라 직접 구축하기도 하지만 편리함을 위해서 Firebase, Braze등의 서비스를 사용하기도 합니다. 어떤 종류던지 Push Server들은 곧바로 app에 push notification을 보낼 수 있는 것이 아닙니다. APNs에 보낸 다음 APNs에서 인증을 한 이후에 app에 push를 보냅니다. 전체적인 흐름은 아래 그림과 같습니다.. 2023. 1. 5. 이전 1 ··· 6 7 8 9 10 11 12 ··· 36 다음 반응형