标准输出方法

时间:2011-02-01 02:27:18

标签: iphone ios4 interface-builder

我知道您可以使用文本字段来显示输出,但是框的大小有限制。我可以在不使用文本字段的情况下向屏幕显示消息吗?到目前为止,我在几本书中找不到任何有用的东西。

1 个答案:

答案 0 :(得分:1)

我认为你可以使用

来做到这一点
CGContextSetStrokeColorWithColor(context, strokeColor); 
CGContextSetFillColorWithColor(context, strokeColor);

CGContextSelectFont(context, "Helvetica", fontSize, kCGEncodingMacRoman);
CGContextSetTextDrawingMode(context, kCGTextFill);
CGContextSetTextPosition(context, 0.0f, round(fontSize / 4.0f));
CGContextShowText(context, [text UTF8String], strlen([text UTF8String]));