Amit Shetye
Amit Shetye

Reputation: 133

How to detect Square Reader Hardware is connected with iPad via Bluetooth?

I'm developing an iOS app using Square Reader SDK, how will I detect whether the Square Reader Hardware is connected with the device, so that I can show Square Reader Settings View in case of the hardware is not connected with the device.

Upvotes: 0

Views: 171

Answers (1)

Punit
Punit

Reputation: 1340

let readerSettingsController = SQRDReaderSettingsController(delegate: self)
readerSettingsController.present(from: self)

If you are done with other required process, Simply put above code to check status about card reader connection.

Upvotes: 1

Related Questions