Type Method 型メソッド

cgAffineTransform(for:)

Returns a Core Graphics affine transform structure corresponding to the data in a given string. 与えられた文字列の中のデータに相当するCore Graphicsアフィン変換構造体を返します。

Declaration 宣言

class func cgAffineTransform(for string: String) -> CGAffineTransform

Parameters パラメータ

string

A string whose contents are of the form “{a, b, c, d, tx, ty}”, where a, b, c, d, tx, and ty are the floating-point component values of the CGAffineTransform data structure. An example of a valid string is @”{1,0,0,1,2.5,3.0}”. The string is not localized, so items are always separated with a comma. For information about the position of each value in the transform array, see CGAffineTransform. ある文字列、それの内容は形式 “{a, b, c, d, tx, ty}” です、そこでabcdtx、そしてtyCGAffineTransformデータ構造体の浮動小数点構成要素値です。有効な文字列の例は、@”{1,0,0,1,2.5,3.0}” です。文字列はローカライズされません、なので項目それらは常にコンマで区切られます。変換配列の中の各値の位置についての情報として、CGAffineTransformを見てください。

Return Value 戻り値

A Core Graphics affine transform structure. If the string is not well-formed, the function returns the identity transform. Core Graphicsアフィン変換構造体。文字列がうまく書式設定されないならば、この関数は恒等変換を返します。

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 幾何学的な型を文字列として表す