🍏/Debugging(4)
-
[Framework] PHPhotoLibrary.shared().presentLimitedLibraryPicker(from: self)
PHPhotoLibrary.shared().presentLimitedLibraryPicker(from: self) 터짐 현상이 에러에서 VC가 문제인지. coordinator패턴이 문제인지. 계속 삽질하다가 찾아냈습니다. 🥲iOS 17 버전에서 오류라고 합니다.16버전에서는 그냥 import로 된다고...*** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '-[PHPhotoLibrary presentLimitedLibraryPickerFromViewController:]: unrecognized selector sent to instance 0x10300fc60' 에러 해결 방법. Targets > Ge..
2024.09.02 -
[Xcode] HTTP 통신 허용 / REST API 호출 에러 디버깅
let apidata = try! Data(contentsOf: apiURI) 위와 같은 코드를 사용하려다 에러가 났다. guard let 을 사용해서 fatal 에러를 해결하니 로그창에 아래와 같은 문구가 나왔다. App Transport Security has blocked a cleartext HTTP connection since it is insecure. Use HTTPS instead or add Exception Domains to your app's Info.plist. 해당 에러는 Info.plist에 해당 구문을 추가 해주면 해결 ! App Transport Security has blocked a cleartext HTTP connection since it is insecure. ..
2022.11.15 -
[Xcode]Illegal Configuration Launch screens may not set custom classnames / Launch screens may not set custom classnames[12] / 런치 스크린 뷰 컨트롤러 빌드 에러
개발환경 : Xcode 12.5.1 런치 스크린 뷰 컨트롤러 빌드 에러 Illegal Configuration Launch screens may not set custom classnames LaunchScreen.storyboard Launch screens may not set custom classnames[12] Use as Launch Screen check out 체크해제 후 clear build 후 빌드. 해결방안 출처. Launch screens may not set custom classnames I tried to add a custom class to my Table View Cell, but after I added it it gives the following error: I of..
2022.01.05 -
[Xcode]LaunchScreen 이미지 사라짐 / launch screen ios image not showing
개발환경 : Xcode 12.5.1 런치스크린에서 이미지를 오토레이아웃 시키다가 사라졌다. 한동안 삽질하고 검색해본 결과 해당 현상을 해결 할 수 있었다. 오토레이아웃 사용시 이미지 사라짐 현상 해결 법. 우선 순위 순으로 확인. 1. Clean Build Folder 후 재 빌드 해 볼 것. - 역시 고전적인 방법이지만 믿을만 하다. 이 방법으로 해결 2. 시뮬레이터에서 App remove 3. Info.plist에 LaunchScreen 적용 되어있는지 확인. 4. Targets의 App Icons and Launch Images의 Launch Screen File명이 LaunchScreen인지 확인. 빌드 후 런
2022.01.05