iPhone to PC data transfer [closed]
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 10 years ago.
Improve this que开发者_Python百科stionI need to transfer data from iPhone to PC using USB from My App. How can i do this.
Thanks,
I would assume you use the Accessory framework that is part of 3.0.
http://developer.apple.com/iphone/library/documentation/ExternalAccessory/Reference/EAAccessory_class/Reference/Reference.html
If iTunes and iCloud is not your cup of tea then use some third party tool like iPhone to Computer Transfer to transfer iPhone data to computer.
CopyTrans is good too.
Hope it helps!
ExternalAccessoryFramework
only talks to MFi verified accessories via 30-pin connector.
You may make use of File-Sharing Support since iOS 3.2. Add the UIFileSharingEnabled
key to your application’s Info.plist file and set the value of the key to YES
. Write your data as files in /Documents
and retrieve them from iTunes. This satisfies your requirement of USB data transfer.
精彩评论