如何在卡布奇诺中绘制文本



我正试图在我的CPView中绘制一些文本,我有这个:

- (void)drawRect:(CGRect)aRect{
var ctx = [[CPGraphicsContext currentContext] graphicsPort],
viewBounds = [self bounds];
CGContextTranslateCTM(ctx, 0, viewBounds.size.height);
CGContextScaleCTM(ctx, 1, -1);
CGContextSetLineWidth(ctx, 2.0);
CGContextShowTextAtPoint(ctx, 100.0, 100.0, "SOME TEXT", 9);
}

但是,我在控制台中得到了这个错误:ReferenceError:找不到变量:CGContextShowTextAtPoint

我该怎么做?

CGContextShowTextAtPoint是CoreText的一部分,在Cappuccino的master分支中还不可用。你可以看看实验性的coretext分支。

目前,在master中,需要使用常规CPTextField标签绘制文本。

相关内容

  • 没有找到相关文章

最新更新