Type Method 型メソッド

cgRect(for:)

Returns a Core Graphics rectangle structure corresponding to the data in a given string. 与えられた文字列の中のデータに相当するCore Graphics矩形構造体を返します。

Declaration 宣言

class func cgRect(for string: String) -> CGRect

Parameters パラメータ

string

A string whose contents are of the form “{{x,y},{w, h}}”, where x is the x coordinate, y is the y coordinate, w is the width, and h is the height. These components can represent integer or float values. An example of a valid string is @”{{3,2},{4,5}}”. The string is not localized, so items are always separated with a comma. ある文字列、それの内容は形式 “{{x,y},{w, h}}” のものです、そこでxは x 座標、yは y 座標、wは幅、そしてhは高さです。これらの構成要素は、整数または浮動小数点値を表せます。有効な文字列の例は、@”{{3,2},{4,5}}” です。文字列はローカライズされません、なので項目それらは常にコンマで区切られます。

Return Value 戻り値

A Core Graphics structure that represents a rectangle. If the string is not well-formed, the function returns CGRectZero. 矩形を表すCore Graphics構造体。文字列がうまく書式設定されないならば、この関数はCGRectZeroを返します。

Discussion 議論

In general, you should use this function only to convert strings that were previously created using the string(for:) function. 一般的に、あなたは以前にstring(for:)関数を使って作成された文字列を変換するためにのみこの関数を使うべきです。

See Also 参照

Representing Geometric Types as Strings 幾何学的な型を文字列として表す