iOS - Bluetooth - 백그라운드 재접속
central.scanForPeripheralsWithServices(nil, options: [CBCentralManagerScanOptionAllowDuplicatesKey:true])
그러나 연결해야 할 장치를 검색할 수 없었고 인터넷에서 원인을 찾았더니 한 사이트가 이렇게 설명되어 있었다.
When backgrounding, you can still scan and connect to a LE peripheral. You can scan for peripherals using scanForPeripheralsWithSerives by stating what service you are looking for in a Peripheral. You cannot do a general scan without stating at least one service in the passed dictionary. If you have a CFUUIDRef from a previous connection, you can call retrievePeripherals with the CFUUIDRef. Your delegate will receive a call to didRetrievePeripherals with a CBPeripheral. With the CBPeripheral you can then connect using connectPeripheral.
다음은 다음과 같다. 프로그램이 백엔드에 있을 때 블루투스 장치를 스캔하고 연결할 수 있다.우리는 지정한 장치 (특정한 서비스 UUIDs 파라미터로 전송) 를 스캔할 수 있으며, 주위의 모든 장치를 스캔할 수 없습니다. 만약 nil로 전송된다면 주위의 모든 장치를 스캔할 수 없습니다.코드를 다음과 같이 바꾸면
let uuid = CBUUID.init(string:ServicesUUID)
central.scanForPeripheralsWithServices([uuid], options: [CBCentralManagerScanOptionAllowDuplicatesKey:true])
프로그램은 백그라운드에서 블루투스 장치를 다시 연결할 수 있다.
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.