如何在iPhone上绘制一些示例图像?

发布于 2024-08-22 01:04:06 字数 100 浏览 10 评论 0原文

我只想在iPhone上画一些简单的圆圈,我认为使用openGL做这个示例工作太复杂了,但我发现UIB没有像canvas这样的东西,关于在iPhone上绘制示例图像有什么建议吗?非常感谢。

I just want draw some simples circle on the iPhone, I think it is too complex to using openGL doing this sample job, but I find that the UIB don't have something like canvas, any suggestion on drawing sample images on iPhone? thx a lot.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

暗藏城府 2024-08-29 01:04:06

创建一个扩展 UIView 的类并实现 drawRect 方法:

- (void)drawRect:(CGRect)rect
{
    // Get the graphics context and clear it
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextClearRect(ctx, rect);

    // Draw a red solid square
    CGContextSetRGBFillColor(ctx, 255, 0, 0, 1);
    CGContextFillRect(ctx, CGRectMake(10, 10, 50, 50));

    // Draw a green solid circle
    CGContextSetRGBFillColor(ctx, 0, 255, 0, 1);
    CGContextFillEllipseInRect(ctx, CGRectMake(100, 100, 25, 25));
}

Create a class that extends UIView and implement the drawRect method:

- (void)drawRect:(CGRect)rect
{
    // Get the graphics context and clear it
    CGContextRef ctx = UIGraphicsGetCurrentContext();
    CGContextClearRect(ctx, rect);

    // Draw a red solid square
    CGContextSetRGBFillColor(ctx, 255, 0, 0, 1);
    CGContextFillRect(ctx, CGRectMake(10, 10, 50, 50));

    // Draw a green solid circle
    CGContextSetRGBFillColor(ctx, 0, 255, 0, 1);
    CGContextFillEllipseInRect(ctx, CGRectMake(100, 100, 25, 25));
}
最丧也最甜 2024-08-29 01:04:06

您是否尝试过 iPhone 文档 ?您正在寻找 UIView。链接的文档为您提供了一个很好的概述,并引用了更具体的信息。该页面上甚至还有代码示例。

Have you tried the iPhone documentation? You're looking for a UIView. The linked documentation gives you a good overview with references to more specific information. There're even code examples on that very page.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文