core bluetooth - ios corebluetooth reconnect device after close app without call cancelPeripheralConnection -
the follow:
- open app
- scan device -> paring -> connecting -> write setting information. it's successful.
- double tap on home button , remove app.
- i see in bluetooth menu in setting app device still connecting. if turn device off turn on, setting app connect device. seems setting app try re-connect paired device.
open app again, retrieve peripherals:
[centralmanager retrieveconnectedperipheralswithservices:servicesuuid];
result:
cbperipheral: 0x14d741b0, identifier = 3e0a0fe9-33db-d2fc-90ce-b73ab64045db, name = time app, state = disconnected
connect retrieved peripheral, system didn't trigger callback: didfailtoconnectperipheral or didconnectperipheral.
i try use preservation , restoration, uiapplicationlaunchoptionsbluetoothcentralskey return null.
so, how connect device after closing app without call cancelperipheralconnection? @ time, must go setting app, forget device connect again.
thanks all.
make sure calling [centralmanager retrieveconnectedperipheralswithservices:servicesuuid];
, connectperipheral
after central manager state delegate method returns cbcentralmanagerstateconnected. if attempt connection peripheral before central manager has been initialized, not connect.
Comments
Post a Comment