본문 바로가기

iOS/이슈32

[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 Issue] Webview에서 URL link가 실행되지 않는 이슈 Why is WKWebView not opening links with target="_blank"? WKWebView does not open any links which have target="_blank" a.k.a. 'Open in new Window' attribute in their HTML -Tag. stackoverflow.com Issue 이슈 내용은 웹뷰에서 로드된 웹페이지에서 문서 내부에 첨부된 URL 링크를 클릭 시 링크가 동작하지 않는 이슈였다. Root cause 찾아보니 링크가 걸린 HTML 태그에 target="_blank" 라는 태그가 포함되어 있으면 문제가 생기는 거 였다. Solution 일단 target="_blank"를 안 쓰는게 가장 효과적이지만 앱 내부에서도 WK.. 2022. 3. 28.
[iOS Issue] UIView.animate에서 constraint 변경 동작 안함 How do I animate constraint changes? I'm updating an old app with an AdBannerView and when there is no ad, it slides off screen. When there is an ad it slides on the screen. Basic stuff. Old style, I set the frame in an animation bloc... stackoverflow.com 아래와 같이 Constraint의 constant 값을 수정해서 UIView의 크기를 조절하는 애니메이션 함수를 만들었다. // // ViewController.swift // Practice // // import UIKit class ViewContr.. 2022. 3. 5.
[iOS Issue] Core data: Failed to load model Core data: Failed to load model I am new to core data. What I am trying to DO: I am trying to create a cocoatouch framework that has an app to add employee details and display them in a table view. So that i can add this framewo... stackoverflow.com 코어 데이터 사용 도중 다음과 같은 에러가 떴다. Core data: Failed to load model 1. Entity 확인 DataModel에서 Entity들을 클릭해서 Module이 'Current Product Module'로 되어있는지 확인한다. 2. .. 2022. 2. 19.