Instance Method
インスタンスメソッド
size
Returns the size necessary to draw the string.
この文字列を描画するのに必要なサイズを返します。
Declaration
宣言
iOS, iPadOS, Mac Catalyst, tvOS, watchOS
- (CGSize
)size;
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
文字列に対する寸法を得る
- containsAttachmentsInRange:
Returns a Boolean value that indicates if the attributed string contains an attachment in the specified range.
属性付文字列がこの指定された範囲の中のある添付書類を含むかを指し示すブール値を返します。
Related Documentation
関連文書
- drawAtPoint:
Draws the attributed string starting at the specified point in the current graphics context.
属性付文字列をこの指定された点で開始して現在のグラフィック文脈で描画します。
- drawInRect:
Draws the attributed string inside the specified bounding rectangle in the current graphics context.
属性付文字列をこの指定された境界矩形の内側に現在のグラフィック文脈で描画します。