Iphone application developing under VMWare
Edit: Sorry for not being clear about my question / problem. Thing is that I couldn't connect my any USB device to Mac, and I was asking how to solve that problem. Other part of my question was - how can I test my application on iPhone without paying to apple for Developer license.
First part 开发者_如何学PythonI've solved - I updated OS X to 10.6.7 and installed MultiBeast. Second part - I've installed my app using Cyndia (packed it into deb file, transferred it to phone, used terminal app to install it) -however, it couldn't start.To install application on device, you have officially to apply (pay) to Apple developer program.
There are also not so official workarounds involving jailbreak and patching iOS system files, which is not really easy to do...
I hope that was the question :)
EDIT
About your second part :
Install from cydia some package named something like
syslogs
and do something liketail -f /var/log/system.log
to understand why app fails to start. (all from memory, didn't checked)Most probable error is that your binary is not signed properly. The quick&cheap solution is to use
ldid -S my binary
there is a cydia package I guess. (again, memory, see that link for more details)The best solution if you really don't want to pay $99 but waste hours to do a complex set up (full of workarounds, patchs and such...), and get the "Build & go" of Xcode like you were paying... Give a look at this.
EDIT 2
Give a look at this SO question for more details, what I've wrote in my previous edit is mostly there.
精彩评论