17
votes

For example, to test features that have several users interacting. All I've come up with is multiple OS X VM's with an iOSS in each, but that seems like a sledgehammer missing the obvious right in front of me?

3
Form Xcode 9 you can run Apps on mulitple simulators simultaneously..Ariven Nadar

3 Answers

10
votes

AFAICT, it does not support multiple instances running at the same time.

I tried two methods, but both failed.

$ open -n /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app
LSOpenURLsWithRole() failed with error -10829 for the file /Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app.

Using an alias (http://forums.creativecow.net/thread/71/860074) brings up a dailog box saying "Only one iOS Simulator can run at a time. Please quit iOS Simulator and try again."

0
votes

http://www.coderebel.com/2010/08/31/iphone_simulator

You may want to checkout this tool. I can run multiple emulators with its help in different VNC consoles with different user on my mac mini.

-2
votes

We have multiple Xcode developers logging on a centralized Mac and each users have own account. Each users can start a seperated Simulator window by running below command (" s should be included):

"/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone Simulator.app/Contents/MacOS/iPhone Simulator"

After simulator window is opened, runining your project will automatically attach Xcode to this window.

Only thing that I'm not sure about, I've ran below script below before. I don't know if it fixed something on our sytem that allows us to run above command: http://coderebel.com/2010/08/31/iphone_simulator

So I suggest first try the command, if it does not help, try script, fix your system, then use the command after.