Cannot assign value of type 'String?' to type 'CBPeripheral?'

866 Views Asked by At
import UIKit
import CoreBluetooth

class ScaningViewController: UIViewController, CBCentralManagerDelegate, CBPeripheralDelegate {

var centralManager: CBCentralManager?
var peripheralDevice: CBPeripheral?
var devicesArray: [String] = []
var refreshControl = UIRefreshControl()

var selectedDevice: String?

@IBOutlet weak var DeviceListTableView: UITableView!

override func viewDidLoad() {
    super.viewDidLoad()
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return devicesArray.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as? DeviceListTableViewCell
    cell?.deviceName.text = devicesArray[indexPath.item]
    return cell!
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    selectedDevice = devicesArray[indexPath.item]
    print(selectedDevice!)
    centralManager?.stopScan()
    self.decodePeripheralState(peripheralState: selectedDevice.state)
    self.peripheralDevice = selectedDevice
    self.peripheralDevice?.delegate = self
    print(self.peripheralDevice!)
    self.centralManager!.connect(self.peripheralDevice!)
    }

In func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) method when I select a row that time i get indexpath.item in string but I want this selectedDevice in CBPeripheral type. Please give me any solution to do this. Thanks in advance...

0

There are 0 best solutions below