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

drawAtPoint:withFont:

Draws the string in a single line at the specified point in the current graphics context using the specified font. 文字列を単一行においてこの指定されたポイントで現在のグラフィック文脈においてこの指定されたフォントを使って描画します。

Declaration 宣言

- (CGSize)drawAtPoint:(CGPoint)point 
             withFont:(UIFont *)font;

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. それで文字列を描画する位置(現在のグラフィック前後関係の座標システムにおいて)。この点は、文字列のもつ境界ボックスの上左隅を表します。

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 only a single line of text, drawing as much of the string as possible using the given font. This method does not perform any line wrapping during drawing. このメソッドは、テキストの単一行のみを描画します、可能な限り多くの文字列を描画しています、与えられたフォントを使っています。このメソッドは、描画の間にどんな行折りたたみも実行しません。

See Also 参照

Deprecated 非推奨