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

sizeWithFont:forWidth:lineBreakMode:

Returns the size of the string if it were to be rendered with the specified font and line attributes on a single line. その文字列の大きさを返します、もしそれが指定されたフォントと行属性である単一の行上で描出されることになったならば。

Declaration 宣言

- (CGSize)sizeWithFont:(UIFont *)font 
              forWidth:(CGFloat)width 
         lineBreakMode:(NSLineBreakMode)lineBreakMode;

Parameters パラメータ

font

The font to use for computing the string size. 文字列サイズを計算するために使うフォント。

width

The maximum acceptable width for the string. This value is used to calculate where line breaks would be placed. その文字列に対する受け入れ可能な最大の幅。この値は、改行が置かれるだろうところを計算するために使われます。

lineBreakMode

The line break options for computing the size of the string. For a list of possible values, see NSLineBreakMode. 文字列の大きさを計算するための改行オプション。可能な値の一覧として、NSLineBreakModeを見てください。

Return Value 戻り値

The width and height of the resulting string’s bounding box. These values may be rounded up to the nearest whole number. 結果文字列のもつ境界ボックスの幅と高さ。これらの値は、最も近い整数へと切り上げられるかもしれません。

Discussion 議論

You can use this method to obtain the layout metrics you need to draw a string in your user interface. This method does not actually draw the string or alter the receiver’s text in any way. あなたはこのメソッドを使って、あなたがある文字列をあなたのユーザインターフェイスの中に描画するのに必要とするレイアウト指標を入手できます。このメソッドは、実際にその文字列を描画しません、またレシーバのもつテキストをどんな方法でも改変しません。

This method returns the width and height of the string constrained to the specified width. Although it computes where line breaks would occur, this method does not actually wrap the text to additional lines. If the size of the string exceeds the given width, this method truncates the text (for layout purposes only) using the specified line break mode until it does conform to the maximum width; it then returns the size of the resulting truncated string. このメソッドは、指定された幅に制約される文字列の幅と高さを返します。それが改行が発生するところを計算するとはいえ、このメソッドは実際にはテキストを追加の行へとワードラップしません。文字列の大きさがその与えられた幅を越えるならば、このメソッドはテキストをこの指定された改行モードを使って切り詰めます(レイアウト目的のみのために)それが最大限の幅に順応するまで;それはそれから結果の切り詰められた文字列の大きさを返します。

See Also 参照

Deprecated 非推奨