Return Value 戻り値
An NSDimension
subclass object from which all other units provided by the subclass are defined.
サブクラスによって提供される全ての他の単位が定義される、NSDimension
サブクラスオブジェクト。
Availability 有効性
Technology
class func baseUnit() -> Self
An NSDimension
subclass object from which all other units provided by the subclass are defined.
サブクラスによって提供される全ての他の単位が定義される、NSDimension
サブクラスオブジェクト。
The default implementation returns nil
to indicate that the NSDimension
class should not be used directly.
省略時の実装は、nil
を返すことによって、NSDimension
クラスが直接に使われるべきでないことを指し示します。
When implementing a subclass, you should return a unit converter that returns the inputted value for both the base
and value
methods. You can create a unit converter for a base unit using the Unit
init(coefficient:)
initializer, passing 1
as the coefficient.
サブクラスを実装する場合、あなたはbase
とvalue
メソッドの両方に対する入力値を返す、ある単位コンバータを返すべきです。あなたは、基本単位に対する単位コンバータを作成することが、Unit
init(coefficient:)
イニシャライザを、1
を係数として渡して使うことで行えます。