Instance Method
インスタンスメソッド
size()
Returns the size necessary to draw the string.
この文字列を描画するのに必要なサイズを返します。
Declaration
宣言
iOS, iPadOS, Mac Catalyst, tvOS, watchOS
func size() -> CGSize
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
関連文書
func draw(at: CGPoint)
Draws the attributed string starting at the specified point in the current graphics context.
属性付文字列をこの指定された点で開始して現在のグラフィック文脈で描画します。
func draw(in: CGRect)
Draws the attributed string inside the specified bounding rectangle in the current graphics context.
属性付文字列をこの指定された境界矩形の内側に現在のグラフィック文脈で描画します。