본문 바로가기

iOS192

[iOS Issue] Lottie 리소스 용량 관련 이슈 Json files is taking more time to load(Approximately 1.7 secounds) · Issue #1224 · airbnb/lottie-ios Hi Folks, Here in my current application am using the Lottie json files for animations, json file size is 1.2mb. which is loading quite good in lottie preview website. When i'm integrating the ... github.com 내가 겪은 이슈와 거의 동일한 이슈인 것 같다. 1.2mb의 json파일을 로딩하는데 1개를 로드할 때는 1.7초, 3개를 로드할 때는 2.8초가 걸렸으며 us.. 2022. 4. 16.
[iOS] KVO (Key-Value Observing) Key-Value Observing(KVO) in Swift 안녕하세요 :) Zedd입니다. 오늘은 KVO에 대해서 공부! # KVO - Key-Value Observing의 약자 - 객체의 프로퍼티의 변경사항을 다른 객체에 알리기 위해 사용하는 코코아 프로그래밍 패턴 - Model과 View와 같 zeddios.tistory.com Apple Developer Documentation developer.apple.com KVO (Key-Value Observing) Key-Value Observing의 약자 객체의 특정 프로퍼티의 변경사항을 다른 객체에 알리기 위해 사용하는 코코아 프로그래밍 패턴 Model가 View와 같이 논리적으로 분리된 파트 간의 변경사항을 전달하는데 유용하다. NSObject를.. 2022. 4. 16.
[iOS Issue] iOS15에서 소리만 실행되는 notification은 실행 불가 iOS 15.1 - Notification sound is not playing with only .sound option set We have an issue when we tried to fire only the sound in the push notification in iOS 15. Sound does not play when UNNotificationPresentationOptions is only set as sound. [.sound] (see snippet code stackoverflow.com iOS14까지는 [.sound], 즉 push notification의 소리만 지정해도 실행이 되었었는데, 이제는 .alert없이 소리만 독단적으로 실행되지가 않는다. 이슈인지 의도적인 건지 잘 .. 2022. 4. 9.
[iOS] APNs 이용해서 Push 보내기 [Swift] APNS - Apple Push Notification 앱이 사용자에게 알림을 주는 방법으로 푸시알림이 있어요 대표적으로 카카오톡 메시지가 오면 위에서 나오는 작은 알림창 같은 거에요 살짝 복잡할지도 모르지만 알아두면 APN은 유용하게 쓰 nsios.tistory.com 원문의 내용과 거의 유사하지만 난 이상하게도 인증서를 키 체인에 등록 후 .p12로 내보내는 것이 안되서 인증서 대신 push Key를 만들어서 테스트해보기로 했다. Apple Developer에서 Keys에서 다음과 같이 push 전용 키를 생성할 수 있는데, key다운로드는 한 번 밖에 안되니 주의 원글에 있는 push notification tester를 실행 후 token탭을 누른뒤 아까 다운로드 받은 .p8 형식의.. 2022. 4. 9.