| 12345678910111213141516171819202122232425262728293031 |
- //
- // CBPeripheralState.swift
- // Naterade
- //
- // Created by Nathan Racklyeft on 3/5/16.
- // Copyright © 2016 Nathan Racklyeft. All rights reserved.
- //
- import CoreBluetooth
- extension CBPeripheralState {
- // MARK: - CustomStringConvertible
- public var description: String {
- switch self {
- case .connected:
- return LocalizedString("Connected", comment: "The connected state")
- case .connecting:
- return LocalizedString("Connecting", comment: "The in-progress connecting state")
- case .disconnected:
- return LocalizedString("Disconnected", comment: "The disconnected state")
- case .disconnecting:
- return LocalizedString("Disconnecting", comment: "The in-progress disconnecting state")
- @unknown default:
- return "Unknown: \(rawValue)"
- }
- }
- }
|