Reputation: 3795
My iPhone app is creating a binary file (up to 20MB). I would like to save this binary file and export it to my Mac. This is strictly for development NOT for submitting to the App Store. Any suggestions/recommendations on best practice for this? I was thinking of an attachment to an email but want to ask some of you experts out there if there's a better way. Many thanks in advance.
Upvotes: 1
Views: 723
Reputation: 5038
Open XCode -> Organizer -> Applications -> Your APP -> Choose it and press download All app data will be downloaded to archive, there is your file
Upvotes: 2
Reputation: 641
If you are doing this just for the development try to add Application supports iTunes file sharing
(UIFileSharingEnabled) to your app's Info.plist file with YES value to enable sharing via iTunes.
Upvotes: 4