如何在不使用界面生成器的情况下创建自己的自定义按钮?
我想创建自己的自定义按钮而不使用任何界面生成器。
实际上我想在 NSObject 类中单独设置所有属性/属性(如框架、颜色、大小、标签等)。然后从我的 UIView 类中我想绘制它们。
我该怎么做,因为我从不使用 NSObject 类?
有任何示例应用程序或示例来执行此操作吗?
I want to create my own custom button without using any interface builder.
Actually i wants to set all my properties/attribute(Like frame,color,size,label etc.) separate in a NSObject class.Then from my UIView class i want to draw them .
How can i do it as i am never use NSObject class?
Any sample application or example to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
实际上,您可以子类
UIButton
- 例如,看看 UIButtons 和核心动画层的乐趣。这是否太多了,您可以简单地创建一个新的UIButton
并设置它的属性:Actually, you can subclass
UIButton
- for an example, have a look at Fun With UIButtons and Core Animation Layers. Is this is too much, you can simply create a newUIButton
and set it's properties:检查此代码:
Check this Code: