如何创建自定义圈子?
我想为我的应用程序创建一个自定义圆圈,我想定义自己的所有属性和属性。
基本上我想创建一个 myCircle 类,它应该从 NSObject 类继承。
我怎样才能做到这一点? 有任何示例应用程序/示例/代码可供参考吗?
I want to create a custom circle for my application whose all attribute and property i want to define my self.
Basically i want to create a myCircle class which should be inherited from NSObject class.
How can i do that?
Any sample application /example/ code for reference?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
MyCircle.h
MyCircle.m
如果您想在基于 MyCircle 对象的视图上显示圆形,您可以子类化 UIView 并重写
- (void)drawRect:(CGRect)rect
方法。您可以使用- (id)initWithRadius:(float)r
方法实例化圆。如果您不确定如何进行这些操作,我建议您阅读一本有关 iOS 编程的介绍性书籍。我以大书呆子牧场指南发誓。
MyCircle.h
MyCircle.m
If you want to display a circle on a view based on your MyCircle object, you could subclass a UIView and override the
- (void)drawRect:(CGRect)rect
method. You can instantiate the circle using the- (id)initWithRadius:(float)r
method.If you're not sure how to go about doing any of that, I recommend reading an introductory book on iOS programming. I swear by the Big Nerd Ranch guide.