Function 関数

NSSizeFromString(_:)

Returns an NSSize from a text-based representation. テキストに基づく表現から、NSSizeを返します。

Declaration 宣言

func NSSizeFromString(_ aString: String) -> NSSize

Discussion 議論

Scans aString for two numbers which are used as the width and height, in that order, to create an NSSize struct. If aString only contains a single number, it is used as the width. The aString argument should be formatted like the output of NSStringFromSize(_:), for example, @"{10,20}". If aString does not contain any numbers, this function returns an NSSize struct whose width and height are both 0. aStringを走査して幅と高さとして使われる2つの数字を、その順序で、探して、NSSize構造体を作成します。aStringがただ1つの数字を含むならば、それは幅として使われます。aString引数は、NSStringFromSize(_:)の出力のように体裁を整えられるべきです、例えば、@"{10,20}"aStringが何ら数字を含まないならば、この関数はNSSize構造体を返し、それの幅と高さは両方とも0です。

See Also 参照

Managing Sizes サイズを管理する