development

Xcode / 시뮬레이터 : 이전 iOS 버전을 실행하는 방법은 무엇입니까?

big-blog 2020. 7. 7. 07:13
반응형

Xcode / 시뮬레이터 : 이전 iOS 버전을 실행하는 방법은 무엇입니까?


iOS SDK 4.2로 업그레이드하려고합니다. 그러나 내가 궁금한 것은 여전히 ​​시뮬레이터를 iOS 3.2로 실행할 수 있는지 여부입니다. iPad 용 iAds를 생성하고 있지만 여전히 프로그램이 iOS 3.2에서 실행되는지 확인하고 싶기 때문입니다.

참고 : 나는 과거에 이와 비슷한 게시물을 보았지만 이것이 어떻게 수행 될 수 있는지에 대한 정확한 단계를 제공하는 데 실제로 도움이되지는 않았습니다.


바이너리에 iAds가있는 경우 iOS 4.0 이전 버전에서는 iAds를 실행할 수 없으며 이와 같은 바이너리를 제출하면 거부됩니다.

업그레이드 후에도 3.2 이상에서 시뮬레이터를 계속 실행할 수 있습니다.

iPhone Simulator에서 하드웨어-> 버전-> 3.2를 선택하십시오.


이 오래된 질문을 발견 한 사람이라면 누구나 이전 버전을 모두 다운로드 할 수 있습니다 .

Xcode-> Preferences-> Components(시뮬레이터 탭을 클릭하십시오).

원하는 모든 버전을 설치하십시오.

설치된 모든 시뮬레이터를 표시하려면 다음을 수행하십시오.

대상-> 드롭 다운 "배포 대상"에서 버전 nr이 가장 ​​낮은 설치된 버전을 선택하십시오.

드롭 다운에 사용 가능한 모든 시뮬레이터가 표시됩니다.


XCODE 10.1

1. Goto Xcode-> 환경 설정 (Shortcut CMD)

2. 구성 요소 선택

3. 시뮬레이터 버전 다운로드

여기에 이미지 설명을 입력하십시오

4. XCode-> 개발자 도구 열기-> 시뮬레이터 이것은 독립형 응용 프로그램으로 시뮬레이터를 시작합니다

5 하드웨어-> 장치-> 장치 관리 ...

6. + iCon을 클릭하여 새 시뮬레이터 버전을 만듭니다.

7. 시뮬레이터 이름, 장치 유형을 지정하고 드롭 다운에서 OS 버전 선택을 선택하십시오.

여기에 이미지 설명을 입력하십시오

8. 작성을 클릭하십시오.

9. 하드웨어-> 장치-> iOS 11.0-> iPhone 6

여기에 이미지 설명을 입력하십시오

여기에 이미지 설명을 입력하십시오

여기에 이미지 설명을 입력하십시오

그것이 실행되는 것은 코딩을 즐긴다!


Open xcode and in the top menu go to xcode > Preferences > Downloads and you will be given the option to download old sdks to use with xcode. You can also download command line tools and Device Debugging Support.

여기에 이미지 설명을 입력하십시오


In XCode under Targets, right-click on your project and Get Info. Under the Build tab look for iOS Deployment Target. By changing this you should be able to test different iOS version.

대체 텍스트


To add previous iOS simulator to Xcode 4.2, you need old xcode_3.2.6_and_ios_sdk_4.3.dmg (or similar version) installer file and do as following:

  • Mount the xcode_3.2.6_and_ios_sdk_4.3.dmg file
  • Open mounting disk image and choose menu: Go->Go to Folder...
  • Type /Volumes/Xcode and iOS SDK/Packages/ then click Go. There are many packages and find to iPhoneSimulatorSDK(version).pkg
  • Double click to install package you want to add and wait for installer displays.
  • In Installer click Continue and choose destination, Choose folder...
  • Explorer shows and select Developer folder and click Choose
  • Install and repeat with other simulator as you need.
  • Restart Xcode.

Now there are a list of your installed simulator.


Choosing older simulator versions is not obvious in Xcode 3.2.5. Older Xcodes had separate lists of "iOS Device SDKs" and "iOS Simulator SDKs" in the "Base SDK" build setting popup menu, but in Xcode 3.2.5 these have been replaced with a single "iOS SDKs" list that only offers 4.2 and "latest".

If you create a new default iOS project, it defaults to 4.2 for both Base SDK and Deployment Target, and in the "Overview" popup in the project's top-left corner, only the 4.2 Simulator is available.

To run an older iOS simulator, you must choose an older iOS version in the "iOS Deployment Target" build setting popup. Only then will the "Overview" popup offer older Simulators: back to 4.0 for iPhone and to 3.2 for iPad.


The simulator CANNOT be downloaded from:

Xcode -> Preferences -> Downloads

Only the iOS devices symbols. As this option says:

This package includes information and symbols that Xcode needs for debugging your app on iOS devices running versions of iOS prior to iOS 4.2. If you intend to debug your app on a device running one of these versions of iOS you should install this package.

즉, iOS 4.2 응용 프로그램을 테스트하려면 iOS 4.2 장치가 필요합니다

참고 URL : https://stackoverflow.com/questions/4262018/xcode-simulator-how-to-run-older-ios-version

반응형