- measurementByAddingMeasurement:
Returns a new measurement by adding the receiver to the specified measurement.
レシーバをこの指定された寸法に加えることによる新しい寸法を返します。
Availability 有効性
Technology
- (NSMeasurement
<UnitType > *)measurementBySubtractingMeasurement:(NSMeasurement
<UnitType > *)measurement;
measurement
The measurement to be subtracted. 引かれることになる寸法。
A new measurement with a value equal to the receiver’s value minus the value of the specified measurement converted into the unit of the receiver. レシーバの単位へと変換されたこの指定された寸法の値を、レシーバのもつ値から引いたものと等しい値を持つ、ある新しい寸法。
This method raises an NSInvalid
if the receiver cannot be converted to unit.
このメソッドは、レシーバが単位へと変換されることができないならばNSInvalid
を引き起こします。
You can use the can
method, passing the unit of the specified measurement, to determine whether a measurement can be converted to a particular unit before calling this method.
あなたはcan
メソッドを、この指定された寸法の単位を渡して使用することで、寸法が特定の単位へとこのメソッドを呼び出す前に変換できるかどうか判定できます。
- measurementByAddingMeasurement: