For a standard iPhone you'll need to pay the US$99/yr to be a member of the developer program. You can then use the adhoc system to install your application onto up to 100 devices. The developer program has the details but it involves adding UUIDs for each of the devices to your application package. UUIDs can be easiest retrieved using Ad Hoc Helper available from the App Store. For further details on this method, see Craig Hockenberry's Beta testing on iPhone 2.0 article
For jailbroken iPhones, you can use the following method which I have personally tested using the AccelerometerGraph sample app on both iPhone OS 2.0.2 and iPhone OS 2.1.
The following steps require openssh, ldid and com.bigboss.respring to be installed first. Replace jasoniphone.local with the hostname of the target device. Be sure to set your own password on both the mobile and root users after installing SSH.
Project, Set Active SDK, Device
Compile your project normally (using Build, not Build & Go).
In the build/Release-iphoneos directory you will have an app bundle. Use your preferred method to transfer this to /Applications on the device.
scp -r AccelerometerGraph.app root@jasoniphone:/Applications/SSH to the phone and fake sign the executable binary:
ssh root@jasoniphone.local ldid -S /Applications/AccelerometerGraph.app/AccelerometerGraphRestart
Let SpringBoard for know the new application to appear on the main screenhas been installed. Either run Respring from the SpringBoard or issue the following command:
ssh root@jasoniphone.local killall -HUP SpringBoard/Applications/Respring.app/respringThis only has to be done when you add or remove applications. Updated applications just need to be relaunched.
To make life easier for yourself during development, you can setup SSH key authentication and add these extra steps as a custom build step in your project.
Note that if you wish to remove the application later you cannot do so via the standard SpringBoard interface and you'll need to use SSH and Respring after:
ssh root@jasoniphone.local 'rm -r /Applications/AccelerometerGraph.app && /Applications/Respring.app/respring'
