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

drawInRect:withFont:

Draws the string in the current graphics context using the specified bounding rectangle and font. 文字列を現在のグラフィック文脈においてこの指定された境界矩形とフォントを使って描画します。

Declaration 宣言

- (CGSize)drawInRect:(CGRect)rect 
            withFont:(UIFont *)font;

Parameters パラメータ

rect

The bounding rectangle (in the current graphics context) in which to draw the string. 境界矩形(現在のグラフィック前後関係において)、それにおいて文字列を描画することになります。

font

The font to use for rendering. 描出するために使うことになるフォント。

Return Value 戻り値

The size of the rendered string. The returned values may be rounded up to the nearest whole number. 描出された文字列の大きさ。返される値は、最も近い整数へと切り上げられるかもしれません。

Discussion 議論

This method draws as much of the string as possible using the given font and constraints. This method uses the UILineBreakModeWordWrap line break mode and the UITextAlignmentLeft alignment. このメソッドは、可能な限り多くの文字列を描画します、与えられたフォントと制約を使っています。このメソッドは、UILineBreakModeWordWrap改行モードとUITextAlignmentLeft引数を使います。

See Also 参照

Deprecated 非推奨