Reputation: 219
Is there a way to programmatically send a file from one iOS device to another using bluetooth. I have used Air Drop but I can't seem to find a proper code snippet for bluetooth file transfer in iOS .
Upvotes: 0
Views: 3587
Reputation: 3401
Use iOS7 MultipeerConnectivity.framework to transfer file using bluetooth and wifi. Check the apple sample code https://developer.apple.com/library/ios/samplecode/MultipeerGroupChat/Introduction/Intro.html and grap the file transfer code.
Upvotes: 6