在iBeacon中发送其他数据

时间:2014-12-03 06:14:21

标签: ios ibeacon

我正在开发一个iBeacon项目,我想在其中发送文本信息和iBeacon数据。我现在使用iPhone作为iBeacon。我找不到使用CoreLocation自定义数据传输和接收的方法。

如果发送方和接收方都是蓝牙模式,我可以这样做。我已经完成了类似的问题(QuestionQuestion2),这些问题与我想要的不同。

2 个答案:

答案 0 :(得分:3)

单独使用iBeacon无法做到这一点。您将需要您的设备充当iBeacon和BLE外围设备。进入信标区域后,您需要使用Core Bluetooth启动与BLE外设的连接,以便读取其他特性。

答案 1 :(得分:0)

我已经在jaalee beacon工作了,它的工作方式也像推送通知一样。

//start Monitoring for beacon

locationManager:(JLEBeaconManager *)manager didStartMonitoringForRegion:(JLEBeaconRegion *)region
{

    [manager requestStateForRegion:region];
    [beaconManager startRangingBeaconsInRegion:region];
}

//Enter method

beaconManager:(JLEBeaconManager *)manager didEnterRegion:(JLEBeaconRegion *)region

//Exit method

beaconManager:(JLEBeaconManager *)manager didExitRegion:(JLEBeaconRegion *)region