error
-
[error/iOS] The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.1.99.IOS/Objective-C 2023. 2. 13. 17:08
The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 10.0, but the range of supported deployment target versions is 11.0 to 16.1.99. 번역 : iOS 배포 대상 'IPHONEOS_DEPLOYMENT_TARGET'은 10.0으로 설정되어 있지만 지원되는 배포 대상 버전의 범위는 11.0~16.1.99입니다. ChatGPT This error message is indicating that the deployment target for your iOS app is set to 10.0, but the latest supported deployment target version is 1..
-
Xcode error - `[FIRApp configure];` (`FirebaseApp.configure()` in Swift) could not find a valid GoogleService-Info.plist in your project. Please download one from https://console.firebase.google.com/."IOS/IOS Error 2022. 6. 28. 08:44
실수로 GoogleService-Info.plist를 지우고 다시 넣었는데.. 해당 오류가 떳다... 뭐야..왜? 오류해결방법은 해당 파일을 드로그앤드롭으로 넣고 팝업창이 뜨는데 그 파일 사용할 targets을 클릭하고 피니시 하면 잘 된당. ㅇㅎ~ 그냥 넣으면 안되는구나!! 타겟을 확실하게 지정해서 넣어야하는구나!! 아항.! 그래도 금방 찾아서 다행이당.
-
Xcode error - Unable to install appNameIOS/IOS Error 2022. 6. 27. 20:15
와씨.. 너 떄문에 내가..아오 하루를 날렸다.. 금요일까지 빌드되던 코드.. 갑자기 월요일 부터 해당 메시지로 'Unable to install app'로 나를 괴롭혔다.. 오전 오후 다 날리고 저녁되서야 선배님께 헬프를 쳤다.. 한시간쯤 뻘짓을 하고있을때.. 1. 이것도해보고 https://stackoverflow.com/questions/57687170/do-not-embed-embed-sign-embed-without-signing-what-are-they-what-th "Do Not Embed", "Embed & Sign", "Embed Without Signing". What are they?. What they do? We have 3 new options in "Frameworks, Lib..
-
Xcode error - The Legacy Build System will be removed in a future release. You can configure the selected build ststem and this deprecation message in File > WorkSpace Settings.IOS/IOS Error 2022. 3. 23. 20:59
예전소스를 볼떄 발견되는 에러 항목이다.. 우어어어어... 에러 시러.. "The Legacy Build System will be removed in a future release. You can configure the selected build ststem and this deprecation message in File > WorkSpace Settings." 위와 같은 에러가 뜬다면.... File -> Project Setting 을 클릭후 Build System -> New Build System 으로 변경하면 해결된다.. https://developer.apple.com/documentation/xcode-release-notes/build-system-release-notes-for-xc..
-
ObjC/Swift - "OS version lower than deployment target"IOS/IOS Error 2022. 2. 4. 14:47
아이폰에다가 시뮬레이션을 돌릴려고하는데 에러메시지가 떳다!! "OS Version lower than deployment target" -> 배포 대상보다 낮은 OS 버전 이라고 말해주고 있다. 실행하고자하는 아이폰을 켜서 설정 > 일반 > 정보 들어가서 소프트웨어 버전을 확인한다. 현재 나의 아이폰버전은 14.7 그럼 실행하고자 하는 앱의 정보를 확인해보자! 내가 배포하고자 하는 앱은 소프트웨어 버전 15.2이상 사용가능한 앱이였고, 내 아이폰은 14.7 이였당. 그럼 아이폰의 버전을 업데이트하거나, 내가 배포하고자 하는 앱의 버전을 아이폰의 버전에 맞춰주면 문제는 해결된다. 나는 내가 배포하고자 하는 앱의 버전을 아이폰의 버전에 맞춰서 이 문제를 해결했다.
-
Swift - "[<UITableViewCell > setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key ~ ."IOS/IOS Error 2021. 6. 21. 23:44
Thread 1: "[ setValue:forUndefinedKey:]: this class is not key value coding-compliant for the key imgView." 나의 에러 코드화면: Class안에 imgView는 내가 선언한 변수의 이름이 없다는것이다. 하지만 나는 분명 imgView라는 변수를 사용했다!! 진짜...UIImageView 관련에서 업데이트를 했나.. 내가 선언을 잘못했나.. Show the Connections inspector에서 Connection을 확인하고 재연결하고 문제가 있나 확인을 몇시간을 보고 생각했던거 같다!! 진짜 많은 생각을 했다.. 진짜 삽질..엄청 해서 얻은결과!! 커스텀 셀관련 Class를 넣어준 곳에서!! inherit Module..