gpt4 book ai didi

cappuccino - 如何在 Cappuccino 中绘制文字

转载 作者:行者123 更新时间:2023-12-03 13:38:02 26 4
gpt4 key购买 nike

我想在我的 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: Can't find variable: CGContextShowTextAtPoint

我该怎么做?

最佳答案

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

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

关于cappuccino - 如何在 Cappuccino 中绘制文字,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8911097/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com