在自定义视图中绘制轴(x 和 y)的代码行是什么?
我正在尝试绘制一个可以通过计算器在其上绘制图形的平面,我知道您可以用一行或几行代码绘制轴,但我不知道它们是什么。
谢谢
I am trying to draw a plane on which can be graphed on by a calculator, and I know you can draw axis with one or a few lines of code but i do not know what they are.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您正在寻找的是 NSBezierPath。它具有以下方法:
您可能还想查看 NSColor,您需要使用它来设置描边颜色。
在 iOS 中,大致等效的类是 UIBezierPath。
I believe what you are looking for is NSBezierPath. It has methods like:
You may also want to take a look at NSColor which you will need to use to set what the stroke color is.
In iOS, the roughly equivalent class is UIBezierPath.