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

drawInRect:withFont:lineBreakMode:

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

Declaration 宣言

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

Parameters パラメータ

rect

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

font

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

lineBreakMode

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

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, line break mode, and size constraints. The text is drawn using the UITextAlignmentLeft alignment. このメソッドは、可能な限り多くの文字列を描画します、与えられたフォント、改行モード、そしてサイズ制約を使っています。テキストは、UITextAlignmentLeft引数を使って描画されます。

See Also 参照

Deprecated 非推奨