我正试图在我的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
标签绘制文本。