我需要在我的BLE連接上設置連接延遲,但文檔非常稀疏,請參閱setDesiredConnectionLatency上的。Xamarin IOS setDesiredConnectionLatency
我使用的IOS的CoreBluetooth框架和documentation僅僅指的是實際的方法:
[Foundation.Export("setDesiredConnectionLatency:forCentral:")]
public virtual Void SetDesiredConnectionLatency (CBPeripheralManagerConnectionLatency latency, CBCentral connectedCentral)
我看不出如何使用任何的例子,文檔或導遊,我已經試過如下:
var peripheralDelegate = new PeripheralManagerDelegate();
//CBCentral central = new CBCentral();
CBPeripheralManager peripheralManager = new CBPeripheralManager(peripheralDelegate, DispatchQueue.DefaultGlobalQueue);
peripheralManager.SetDesiredConnectionLatency(CBPeripheralManagerConnectionLatency.Low, central);
我不知道如何獲取CBCentral實例,或者如何創建一個實例。
可有人請點我就如何可以使用SetDesiredConnectionLatency或CBCentral正確的方向
你已經張貼返回404 – Demitrian
固定文檔URL鏈接 – MariusB