Guides and Sample Code

Developer

Playground Book Format Reference

On This Page

PlaygroundBluetoothConnectionView.Item

A structure that holds information about a peripheral displayed in a connection view.
ある接続ビューの中で表示されるひとつの周辺機器についての情報を保持する構造体。

Initializers
イニシャライザ

init(name:icon:issueIcon:firmwareStatus:batteryLevel)

Creates a structure that holds information about a peripheral displayed in a connection view.
ある接続ビューの中で表示されるひとつの周辺機器についての情報を保持する構造体を作成します。

Declaration
宣言

  • init(name: String, icon: UIImage, issueIcon: UIImage, firmwareStatus: FirmwareStatus? = nil, batteryLevel: Double? = nil)

Parameters
パラメータ

name

The name of a peripheral as it should appear in a connection view.
接続機器の名前、接続ビューにおいてそれが現れるはずの通りに。

icon

An image that represents a peripheral.
ある接続機器を表している画像。

issueIcon

An icon indicating that a peripheral may not function correctly.
ある周辺機器が正しく機能しないかもしれないことを示すアイコン。

firmwareStatus

A value that indicates whether a peripheral needs a firmware update.
ある値、それはある周辺機器がファームウェアアップデートを必要とするかどうかを示します。

batteryLevel

A value between 0 and 1.0 indicating a peripheral’s percent battery charge.
ある周辺機器のバッテリ充電割合を指し示している 0 と 1.0 の間のある値。

Instance Properties
インスタンスプロパティ

name

The name of a peripheral as it should appear in a connection view.
接続機器の名前、接続ビューにおいてそれが現れるはずの通りに。

Declaration
宣言

  1. var name: String

icon

An image that represents a peripheral.
ある接続機器を表している画像。

Declaration
宣言

  1. var icon: UIImage

issueIcon

An image indicating that a peripheral may not function correctly.
ある周辺機器が正しく機能しないかもしれないことを示す画像。

Declaration
宣言

  1. var issueIcon: UIImage

firmwareStatus

A value that indicates whether a peripheral needs a firmware update.
ある値、それはある周辺機器がファームウェアアップデートを必要とするかどうかを示します。

Declaration
宣言

  1. var firmwareStatus: FirmwareStatus?

batteryLevel

A value between 0 and 1.0 indicating a peripheral’s percent battery charge.
ある周辺機器のバッテリ充電割合を指し示している 0 と 1.0 の間のある値。

Declaration
宣言

  1. var batteryLevel: Double?