Reputation: 182
I want to send data from one iPhone device to another iPhone device, in that one device work as transmitter and other work as receiver. Receiver can also send data to transmitter(server).
So is there any way using code to do this ?
Upvotes: 4
Views: 2549
Reputation: 8012
iBeacon is a transmit-only proximity technology, that's why it's found in the Core Location framework. It is not designed, nor does it support, bi-directional communication. An iBeacon advertises its presence and that is all.
If you want to perform data transfer over Bluetooth, have a look at the Core Bluetooth framework and its samples, such as the CoreBluetooth Temperature Sensor sample.
Upvotes: 5