Hello StackOverflow Community:

I'm developing a web app that apparently is having problems in iOS devices. The problem is that I don't own an iOS device and I develop in Linux Ubuntu. I'm looking for a way to emulate/simulate this OS in Linux (especially the browser), but haven't found anything.

So far, what I've found is the iOS SDK's Simulator, but that is meant for the Mac. And also some emulator for Windows. Has anyone done this before?

link|improve this question

71% accept rate
2  
You can not hope to develop software for any given platform if you don't have access to that platform for testing. Either beg, borrow or buy an iOS device or abandon plans to develop software for iOS. – Paul R Jun 10 '11 at 19:44
feedback

2 Answers

up vote 4 down vote accepted

The only solution I can think of is to install VMWare or any other VT then install OSX on a VM.

It works pretty good for testing.

link|improve this answer
Yeah, that seems like a solution, but the long route indeed. :P – YOMorales Jun 10 '11 at 19:56
Doing this, as no other option seems available (except for actually acquiring the mobile devices in question). – YOMorales Jun 19 '11 at 5:17
is it possible to deploy for tests an app on iphone using Linux? – Pabluez Oct 24 '11 at 19:52
feedback

As far as I know, there is no such a thing as iOS emulator on windows or linux, there are only some gameengines that enable you to compile same code for both iOS and windows or linux and there is a toolchain to compile iOS application using linux. none of them are realy emulator/simulator things. and to use that toolchain you need a jailbreaked iOS device to test binary file created using toolchain. I mean linux itself can't run the binary created itself. and by the way even in mac simulator is just an intermediate program which runs mac-compiled binary, since if you change compiling for iOS from simulator or the other way, all the files are rebuild. and also there are some real differences, like iOS is a case-sensitive operation while simulator is not.

so the best solution is to buy an iOS device yourself.

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.