我正在使用核心蓝牙框架。我正在尝试使用此框架创建外围设备。我的外围设备使用以下方式宣传数据:
manager=[[CBPeripheralManager alloc]initWithDelegate:self queue:nil];
[manager startAdvertising:dictionary];
这里我为广告传递的字典是:
NSDictionary *dictionary = [[NSDictionary alloc] initWithObjectsAndKeys:
@"name", CBAdvertisementDataLocalNameKey,@"some other data",CBAdvertisementDataManufacturerDataKey,nil];
当我运行应用程序时,我收到警告:CoreBluetooth 中不允许广告键“制造商数据”
而且我没有收到我使用CBAdvertisementDataManufacturerDataKey
中心侧的密钥发送的“一些其他数据”。我在中间得到了这个名字。那么我怎样才能将其他一些数据与广告数据一起发送呢?