본문 바로가기

ios83

[iOS] autoresizingMask iOS ) translatesAutoresizingMaskIntoConstraints 안녕하세요 :) Zedd입니다. 오늘은...! translatesAutoresizingMaskIntoConstraints..!을 정확히 알아보는 공부~.~ translatesAutoresizingMaskIntoConstraints 사실 엄청 많이 보셨을 코드에요. self.view.trans.. zeddios.tistory.com autoresizingMask superview의 bound가 변할 때, receiver스스로 size를 변경할 수 있게 하는 integer bit mask이다. 특정 view의 bound가 변하면, view는 자동으로 subview 각자의 autoreSizing mask에 따라서 subvie.. 2022. 4. 16.
[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.