Where can I find iphone simulator to run xamarin iOS app

I pull my hair to this question. In fact, I am developing an iOS application for the first time using xamarin. I am creating this application on a MAC. Hello world application created. I refer to the Xamarin Hello World Tutorial link. But I do not have the IOS Simulator option on devices. It has only two options: Ios Device and Default.For the simulator, is there any installation or something else. Please help me and any help would be appreciated.

+7
ios iphone ios-simulator xamarin
source share
6 answers

This is a problem with the xcode version. I updated the version. Now ots is working fine. Thanks JAL.

0
source share

Is Xcode found in the right place? Check by clicking Xamarin Studio> Preferences> SDK Location> Apple. If the Apple SDK is not found, you can manually specify the path to the Xcode location.

+1
source share

I had this problem because I was trying to create and use an iOS project using the "Unified API". I suggest not using this and sticking to the "Classic API". The first one does not work (it will not be created) if you want to use a simulator, and not a real device.

+1
source share

You do not get the screen as shown below.

enter image description here

follow the link, it can help you, my friend ..

http://docs.xamarin.com/guides/ios/getting_started/installation/mac/

0
source share

I think you donโ€™t have an iOS SDK for your Xcode, it usually comes with Xcode, but if for some reason you donโ€™t find it, just follow these steps:

  • Go to Finder> Applications> Xcode (right click)> Show Package Contents
  • A new search box appears with the Content folder
  • Content> Developer> Platforms> iPhoneSimulator.platform> Developer> SDK> Here you should get a list of * .sdk files
  • If there are no files, download the SDK file and paste it here, close Xcode, Monotouch and again. Open it, you should find the iOS simulators in the drop-down list.

You can get the Xcode and SDk here. Check if Xcode is installed correctly, as it usually contains at least 1 SDK

0
source share
  • select option Debug-iPhoneSimulator Image1
  • Right-click the project in the taskbar
  • select "Run with iPhoneSimulator" Image2
0
source share

All Articles