Type Method 型メソッド

uiEdgeInsets(for:)

Returns a UIKit edge insets structure based on the data in the specified string. 指定された文字列の中のデータに基づくUIKit縁差込構造体を返します。

Declaration 宣言

class func uiEdgeInsets(for string: String) -> UIEdgeInsets

Parameters パラメータ

string

A string whose contents are of the form “{top, left, bottom, right}”, where top, left, bottom, right are the floating-point component values of the UIEdgeInsets structure. An example of a valid string is @”{3.0,8.0,3.0,5.0}”. The string is not localized, so items are always separated with a comma. ある文字列、それの内容は形式 “{top, left, bottom, right}” です、そこでtopleftbottomrightUIEdgeInsets構造体の浮動小数点構成要素値です。有効な文字列の例は、@”{3.0,8.0,3.0,5.0}” です。文字列はローカライズされません、なので項目それらは常にコンマで区切られます。

Return Value 戻り値

An edge insets data structure. If the string is not well-formed, the function returns zero. 縁差込データ構造体。文字列がうまく書式設定されないならば、この関数はzeroを返します。

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