swift 封装一个自己的按钮控件
程序员文章站
2022-05-29 12:08:26
...
import UIKit class FuncButton: UIButton { init() { //要使用自动布局 super.init(frame: CGRect.zero) //为按钮添加边框 self.layer.borderWidth = 0.5 self.layer.borderColor = UIColor(red: 219/255.0, green:219/255.0 , blue: 219/255.0, alpha: 1).cgColor //设置字体与字体颜色 self.setTitleColor(UIColor.orange, for: UIControl.State.normal) self.titleLabel?.font = UIFont.systemFont(ofSize: 25) self.setTitleColor(UIColor.black, for: UIControl.State.highlighted) } required init?(coder aDecoder: NSCoder) { fatalError("init(coder:) has not been implemented") } }
上一篇: Node.js和npm安装
推荐阅读
-
vue element-ui之怎么封装一个自己的组件的详解
-
android控件封装 自己封装的dialog控件
-
android控件封装 自己封装的dialog控件
-
iOS 控件封装(又名拧螺丝)之排序按钮的开发
-
iOS 控件封装(又名拧螺丝)之排序按钮的开发
-
[swift]iOS开发:使用rar解压库Unrar4iOS遇到的那些坑,另附上自己的一个简易版的本地沙盒文件浏览器
-
android studio中让一个控件按钮居于底部的几种方法,以及在RelativeLayout中的左中右
-
WPF 新窗口点击按钮修改另一个窗口的控件属性
-
Flutter学习之自定义组合控件法封装具有项目特色的统一样式的按钮
-
自己用PHP封装了一个DB数据库 mysql 的类