Instance Method インスタンスメソッド

size()

Returns the size necessary to draw the string. この文字列を描画するのに必要なサイズを返します。

Declaration 宣言

iOS, iPadOS, Mac Catalyst, tvOS, watchOS

func size() -> CGSize

macOS

func size() -> NSSize

Return Value 戻り値

The minimum size required to draw the entire contents of the string. 文字列の全内容を描画するのに必要とされる最小限の大きさ。

Discussion 議論

You can use this method prior to drawing to compute how much space is required to draw the string. あなたは、このメソッドを描画を行う前に使って、どのくらいの空間が文字列を描画するのに必要とされるかを計算できます。

This method may return fractional sizes. When setting the size of your view, use the ceil function to round fractional values up to the nearest whole number. このメソッドは、小数の大きさを返すかもしれません。あなたのビューの大きさを設定する場合、ceil関数を使って、小数値の端数を切り上げて整数にしてください。

See Also 参照

Getting Metrics for the String 文字列に対する寸法を得る

Related Documentation 関連文書