I am trying to debug some inconsistent behaviour I am seeing in an application that gets its primary data from the internet. I don't see the issues in the simulator, just on the device, so I'd like to reproduce the network and connectivity environment in the simulator.

Is there any way of disabling the network in the simulator?

(I am connecting to the Mac remotely to code, no other choice right now, so disabling the OS network isn't an option).

link|improve this question
feedback

5 Answers

up vote 14 down vote accepted

I'm afraid not—the simulator shares whatever network connection the OS is using. I filed a Radar bug report about simulating network conditions a while back; you might consider doing the same.

link|improve this answer
marking as correct, as it answers the specific question I asked, but am also acknowledging the helpful answer from phix23. – Paul Hammond Jan 26 '11 at 18:49
1  
Not sure if it's in response to this radar bug, but the Developer Tools now include a Network Link Conditioner tool. – samvermette Apr 5 at 18:12
Network Link Conditioner allows you to specify a percentage of packets to be dropped, but as far as I've seen there's unfortunately no way to disable all connectivity. – modocache Apr 9 at 8:57
feedback

The only way to disable network on iOS simulator I know is using tools like Little Snitch or Hands Off. With them you can deny/block any out- and ingoing network connections. You can set it up so that it only blocks connections from the simulator app. Works like a firewall.

link|improve this answer
3  
but that won't make the simulator behave like you're offline. It will just make your servers be unavailable, which is quite a different thing. – LordT Jan 26 '11 at 18:45
actually, LordT, that may be sufficient for the specific circumstances I have...! – Paul Hammond Jan 26 '11 at 18:48
phix23 - do you have a preference between those two suggested tools? – Paul Hammond Jan 26 '11 at 18:55
No I haven't. I've only tried Hands off, because it has more features. – phix23 Jan 26 '11 at 19:01
+1 : I've used Little Snitch for exactly this purpose, testing to make sure a Simulated app works if the network connection is broken. – hotpaw2 Jan 26 '11 at 19:41
feedback

nope, there isn't. the iOS simulator is just a simulator, a small programm that's display a screen a let's you start other programs. It doesn't do a lot to the network stack, hence you can't disconnect it without disconnecting the mac itself.

link|improve this answer
feedback

Just updating the answer to the current date. Since Xcode 4 (?) there is a preferences pane in /Applications/Utilities called Network Link Conditioner. Either you use one of the existent profiles or you create your own custom profile with 0 Kbps Up/Downlink and 100% dropped.

link|improve this answer
feedback

Just turn off your WiFi in Mac OSX this works a treat!

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.