본문 바로가기
반응형

1 - iOS33

[iOS/Swift] 자동 업데이트의 점진적 출시 비율 App Store Connect에서 아래 화면처럼 표시가 된다. 아래 링크의 문서에도 비율이 정리되어있다. https://help.apple.com/app-store-connect/#/dev3d65fcee1 https://help.apple.com/app-store-connect/#/dev3d65fcee1 To see this page, you must enable JavaScript. Pour afficher cette page, vous devez activer JavaScript. Zur Anzeige dieser Seite müssen Sie JavaScript aktivieren. このページを表示するには、JavaScript を有効にする必要があります。 help.apple.com 2023. 1. 9.
[iOS/Swift] iOS 16 List, TextEditor background color hidden iOS 16부터 갑자기 List 등에서 background color가 하얗게 나와서 찾아보니 iOS 16부터는 아래 링크처럼 설정해주어야 한다고 한다. How to change the background color of List, TextEditor, and more https://www.hackingwithswift.com/quick-start/swiftui/how-to-change-the-background-color-of-list-texteditor-and-more How to change the background color of List, TextEditor, and more - a free SwiftUI by Example tutorial Was this page useful? Let us .. 2023. 1. 9.
[iOS/Swift] from SQLite to Realm Local DB migration 보호되어 있는 글 입니다. 2022. 12. 22.
[iOS/Swift] Local DB 비교(Core data, SQLite, Realm) Core Data https://developer.apple.com/documentation/coredata Apple Developer Documentation developer.apple.com Core Data: iOS 플랫폼 단에서 지원하는 관계형 데이터베이스 라이브러리 객체 형식으로 저장하고 관리할때 사용하기 좋다. 속도가 빠르다는 단점 thread-safe 하지 않다는 단점 @FetchRequest 라는 프로퍼티 래퍼를 사용해서 편하게 쓸 수 있다. Widget 등을 개발할때 데이터 연동이 아주 편리하다. SQLite https://github.com/stephencelis/SQLite.swift GitHub - stephencelis/SQLite.swift: A type-safe, Swift.. 2022. 12. 7.
[iOS/Swift] How to respond to view life cycle updates 앱의 Lifecycle, 생명주기는 앱의 실행부터 종료까지의 상태 변화라고 볼 수 있다. 앱이 어떤 생명 주기에서 어떤 동작을 해야하는지 잘 정의하면 된다. 즉, Lifecycle event에 잘 respond 하는 것이 개발자가 할 일이다. iOS 13부터는 scene이라는 개념이 생겼는데, 이는 하나의 앱이 여러 개의 scene 인스턴스를 가질 수 있게 되었음을 뜻한다. 예를 들면, 아이패드에서 하나의 필기 어플을 2개의 화면으로 띄워서 사용하는 경우를 떠올려보면 이해하기 쉽다. multi scene 환경에서는 서로 다른 scene은 서로 다른 인스턴스로, 각자의 생명주기를 갖게 된다. 그렇기 때문에 iOS 13 이전에 AppDelegate에서 Process Lifecycle과 UI Lifecyle을.. 2022. 10. 28.
[iOS/Swift] 'alert' was deprecated in iOS 14.0 UNNotificationPresentationOptions 중 .alert가 iOS 14부터 deprecated 되었다. https://developer.apple.com/forums/thread/661953 .list .list로 옵션을 주었을때는 App이 켜진 상태에서는 상단에 배너로 알림이 오지 않는다. 상단 부분을 아래로 스크롤하여 Notification Center(잠금 화면)를 확인했을때 Notification이 쌓여있는 것을 확인할 수 있다. App이 꺼진 상태(홈 화면 또는 다른 앱 사용중)에서는 상단에 배너로 알림이 오고, Notification Center(잠금 화면)에도 이렇게 쌓인다. .banner .banner로 옵션을 주었을때는 App이 켜진 상태에서도 상단에 배너로 알림이 온.. 2022. 10. 28.
반응형