如何在iPhone上绘制一些示例图像?
我只想在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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
创建一个扩展 UIView 的类并实现 drawRect 方法:
Create a class that extends UIView and implement the drawRect method:
您是否尝试过 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.