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

sizeWithFont:

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

Declaration 宣言

- (CGSize)sizeWithFont:(UIFont *)font;

Parameters パラメータ

font

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

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. あなたはこのメソッドを使って、あなたがある文字列をあなたのユーザインターフェイスの中に描画するのに必要とするレイアウト指標を入手できます。このメソッドは、実際にその文字列を描画しません、またレシーバのもつテキストをどんな方法でも改変しません。

In iOS 6, this method wraps text using the NSLineBreakByWordWrapping option by default. In earlier versions of iOS, this method does not perform any line wrapping and returns the absolute width and height of the string using the specified font. iOS 6では、このメソッドはテキストをNSLineBreakByWordWrappingオプションを初期状態では使用してワードラップします。iOSの以前のバージョンでは、このメソッドはどんな行折りたたみも実行しません、そして指定されたフォントを使っている文字列の絶対的な幅と高さを返します。

See Also 参照

Deprecated 非推奨