0

I have made an app for my iphone. I'm wanting to let my friend see the app too. I've been loading the app onto my phone by selecting my iphone in Xcode and clicking "Run". I cannot set his up to do this though since he's in another state. Is there anyway I can set it up so he can load it on his phone?

Amicable
  • 3,115
  • 3
  • 49
  • 77
daveomcd
  • 6,367
  • 14
  • 83
  • 137
  • Send him the code and have him do the same thing you are? – TheZ Jul 16 '12 at 17:38
  • 1
    [This question](http://stackoverflow.com/questions/7518261/how-to-deploy-an-app-to-another-ipad-without-usb-connection) might help. – Ken White Jul 16 '12 at 17:40

3 Answers3

4

Check out TestFlight. You'll have to add his device to your account and create a new provisioning profile for his device, but then you can distribute it with TestFlight and automatically push out any updates to him.

stonesam92
  • 4,307
  • 2
  • 19
  • 24
  • I first made it into an ipa file. To do that I archived the project and then distributed it through the organizer. Then I was able to distribute it to his iphone thanks! – daveomcd Jul 16 '12 at 20:21
1

There really isn't a way for you to share it wirelessly, but you could add his device to your account, and create a new provisioning profile with his device included, and he could download the project and run it there.

Jeeter
  • 5,887
  • 6
  • 44
  • 67
1

Create an ad-hoc provisioning profile and use this profile to validate and distribute your app. Don't select App Store, but the other option (can't remember what that's called right now). This will create a .IPA file, which your friend can drag into iTunes and install on his device. Note that you will need to add his UDID to your developer portal for this to work.

Scott Berrevoets
  • 16,921
  • 6
  • 59
  • 80