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

drawAtPoint:forWidth:withFont:minFontSize:actualFontSize:lineBreakMode:baselineAdjustment:

Draws the string in a single line with the specified font and attributes, adjusting the font attributes as needed to render as much of the text as possible. 文字列を単一行においてこの指定されたフォントと属性で描画します、可能な限りテキストを多く描出するのに必要なだけフォント属性を調整します。

Declaration 宣言

- (CGSize)drawAtPoint:(CGPoint)point 
             forWidth:(CGFloat)width 
             withFont:(UIFont *)font 
          minFontSize:(CGFloat)minFontSize 
       actualFontSize:(CGFloat *)actualFontSize 
        lineBreakMode:(NSLineBreakMode)lineBreakMode 
   baselineAdjustment:(UIBaselineAdjustment)baselineAdjustment;

Parameters パラメータ

point

The location (in the coordinate system of the current graphics context) at which to draw the string. This point represents the top-left corner of the string’s bounding box. それで文字列を描画する位置(現在のグラフィック前後関係の座標システムにおいて)。この点は、文字列のもつ境界ボックスの上左隅を表します。

width

The maximum width of the string. 文字列の最大限の幅。

font

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

minFontSize

The minimum size to which the font may be reduced before resorting to truncation of the text. テキストの切り詰めに助けを求める前にそれへとフォントが縮小されるかもしれない最小限のサイズ。

actualFontSize

On input, a pointer to a floating-point value. On return, this value contains the actual font size that was used to render the string. 入力では、ある浮動小数点地へのポインタ。戻りでは、この値は実際のフォントサイズを含みます、それは文字列を描出するのに使われたものです。

lineBreakMode

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

baselineAdjustment

Specifies the vertical text-adjustment rule to use. This rule is used to determine the position of the text in cases where the text must be drawn at a smaller size. 使用する垂直テキスト調節規則を指定します。この規則は、そこでテキストがある小さなサイズで描画されなければならない場合において、テキストの位置を決定するために使われます。

Return Value 戻り値

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

See Also 参照

Deprecated 非推奨