Swift UI之UILabel 和 UIButton(五)

Swift UI之UILabel 和 UIButton(五),第1张

概述Swift_Demo https://github.com/Zhangjingwang1993/Swift.git UILabel func createSubviewsOfLabel() { // 创建Label, 之后设置frame let label = UILabel() label.frame = CGRectMake(10, 10

Swift_Demo https://github.com/Zhangjingwang1993/Swift.git

UILabel
func createSubvIEwsOfLabel()    {        // 创建Label,之后设置frame        let label = UILabel()        label.frame = CGRectMake(10,10,150,20)        self.vIEw.addSubvIEw(label)        let label1 = UILabel(frame: CGRectMake(10,50,20))        self.vIEw.addSubvIEw(label1)        // 属性的设置跟OC基本类似        label.text = "This is a Label";        label.textcolor = UIcolor.yellowcolor()        label.Font = UIFont.systemFontOfSize(14)        label1.backgroundcolor = UIcolor.clearcolor()        // 创建富文本        let attrString = NSMutableAttributedString(string: "This is a attrString")        // 设置字体的大小        attrString.addAttribute(NSFontAttributename,value: UIFont.systemFontOfSize(20),range: NSMakeRange(2,5))        // 设置字体的颜色        attrString.addAttribute(NSForegroundcolorAttributename,value: UIcolor.redcolor(),5))        // 这只下划线        attrString.addAttribute(NSUnderlinestyleAttributename,value: NSUnderlinestyle.StyleSingle.rawValue,5))        label1.attributedText = attrString    }
UIbutton
func createSubvIEwsOfbutton()    {        // 创建        let button = UIbutton.init(type: UIbuttonType.Custom)        // 还可以这样 let button = UIbutton(type: UIbuttonType.Custom)        button.frame = CGRectMake(10,80,50)        button.backgroundcolor = UIcolor.greencolor()        button.setTitle("iambutton",forState: UIControlState.normal)        button.addTarget(self,action: Selector("click:"),forControlEvents: UIControlEvents.touchUpInsIDe)        button.layer.cornerRadius = 5        self.vIEw.addSubvIEw(button)    }
点击方法
func click(button:UIbutton)    {        print("点击")    }
总结

以上是内存溢出为你收集整理的Swift UI之UILabel 和 UIButton(五)全部内容,希望文章能够帮你解决Swift UI之UILabel 和 UIButton(五)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1078564.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-27
下一篇 2022-05-27

发表评论

登录后才能评论

评论列表(0条)

保存