Harshil Kotecha
Harshil Kotecha

Reputation: 2896

How to download iPad Mini simulator

I want to test my application on iPad mini screen in Xcode 8.2, but I could not find the simulator for the same.

I have also tried to add simulator Hardware > Device > click bottom add menu but here I do not see any option to download the iPad mini simulator. There is no option for iPad mini (image here)

Upvotes: 34

Views: 22942

Answers (2)

Akshar Patel
Akshar Patel

Reputation: 9388

I don't know about the earlier releases but you can do this on Xcode 10.2.1(or later)

Select Add Additional Simulators... from the active scheme:

enter image description here

Then press + to create new Simulator and select iPad mini in Device Type:

enter image description here

Upvotes: 30

russbishop
russbishop

Reputation: 17229

By popular demand, Xcode now includes the iPad mini Simulator. It is not created by default, but you can use the Xcode Devices & Simulators window or xcrun simctl from the command line to create one.

For example, to create an iPad mini 4 simulator with Xcode 11.2:

xcrun simctl create "iPad mini 4" com.apple.CoreSimulator.SimDeviceType.iPad-mini-4 com.apple.CoreSimulator.SimRuntime.iOS-13-2

Upvotes: 46

Related Questions