-
[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 11.0. This means that your app may not run on the latest iOS devices, as those devices are running a more recent version of iOS than 10.0. To resolve this issue, you can change the deployment target to a more recent version, such as 11.0, 12.0, 13.0, or 14.0, depending on the features you need to use in your app.
To change the deployment target, follow these steps:
- Open your Xcode project.
- Go to the project's Build Settings.
- Find the "iOS Deployment Target" setting.
- Change the value of the setting to a more recent version of iOS, such as 11.0, 12.0, 13.0, or 14.0.
- Build and run your app to test if it runs on the new deployment target.
Note that changing the deployment target to a more recent version may require you to make changes to your code to ensure that it continues to work properly. This is because more recent versions of iOS may include changes to the APIs and other features that your app may be using.
이 오류 메시지는 iOS 앱의 배포 대상이 10.0으로 설정되었지만 지원되는 최신 배포 대상 버전이 11.0임을 나타냅니다. 즉, 최신 iOS 기기에서는 10.0보다 최신 버전의 iOS를 실행하므로 앱이 실행되지 않을 수 있습니다. 이 문제를 해결하려면 앱에서 사용해야 하는 기능에 따라 배포 대상을 11.0, 12.0, 13.0 또는 14.0과 같은 최신 버전으로 변경할 수 있습니다. 배포 대상을 변경하려면 다음 단계를 따르십시오. Xcode 프로젝트를 엽니다. 프로젝트의 빌드 설정으로 이동합니다. "iOS 배포 대상" 설정을 찾습니다. 설정 값을 11.0, 12.0, 13.0 또는 14.0과 같은 최신 버전의 iOS로 변경합니다. 앱을 빌드하고 실행하여 새 배포 대상에서 실행되는지 테스트합니다. 배포 대상을 최신 버전으로 변경하면 계속 제대로 작동하도록 코드를 변경해야 할 수 있습니다. 최신 버전의 iOS에는 앱에서 사용할 수 있는 API 및 기타 기능에 대한 변경 사항이 포함될 수 있기 때문입니다.
iOS가 이제 10버전은 지원안해서 설정값 변경하라는 말 인듯하다.
'IOS > Objective-C' 카테고리의 다른 글
[Error][__NSArray0 removeAllObjects]: unrecognized selector sent to instance (0) 2022.08.23 ObjC 변수의 값 print, Log 표현하기 (0) 2022.04.10 Objective-C 란? 정리 (0) 2022.04.10