Class

Unit

An abstract class representing a unit of measure. ある寸法単位を表している抽象クラス。

Declaration 宣言

class Unit : NSObject

Overview 概要

Each instance of an Unit subclass consists of a symbol, which can be used to create string representations of NSMeasurement objects with the MeasurementFormatter class. Unitサブクラスの各インスタンスは、あるsymbolからなります、それはNSMeasurementオブジェクトの文字列表現をMeasurementFormatterクラスで作成するために使われることができます。

The Dimension subclass is an abstract class that represents a dimensional unit, which can be converted into different units of the same type. The Foundation framework provides several concrete Dimension subclasses to represent the most common physical quantities, including mass, length, duration, and speed. Dimensionサブクラスは、ある次元単位を表す抽象クラスです、それは同じ型の異なる単位へと変換されることができます。Foundationフレームワークは、いくつかの具象Dimension下位クラスを提供して、質量、長さ、期間、そして速度を含む、多くの一般的な物理量を表します。

Subclassing Notes サブクラス作成の注意

NSUnit is intended for subclassing. For dimensional units, you should use one of the Apple provided Dimension subclasses listed in Table 1, or create a custom subclass of Dimension. You can create a direct subclass of NSUnit to represent a custom dimensionless unit, such as a count, score, or ratio. NSUnitは、サブクラスを作ることを意図されます。次元単位それらに対して、あなたは表 1で一覧にされるApple提供のDimensionサブクラスを使う、またはDimensionのあつらえのサブクラスを作成するべきです。あなたは、NSUnitの直接のサブクラスを作成して、あるあつらえの次元なし単位を表せます、たとえばある計数、得点、または比率など。

Topics 話題

Accessing Properties プロパティにアクセスする

Creating Units 単位を作成する

Relationships 関係

Inherits From 継承元

Conforms To 次に準拠

See Also 参照

Essentials 要点