• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

swift 第三课 宏定义 宏方法

原作者: [db:作者] 来自: [db:来源] 收藏 邀请

swift 与oc 不同,没有宏的定义就像 oc 可以这样写,直接调用:

/*
 默认颜色
 */
#define RGBCOLOR_HEX(h) RGBCOLOR((((h)>>16)&0xFF), (((h)>>8)&0xFF), ((h)&0xFF))
#define RGBCOLOR(r,g,b) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:1]
#define userGreenColor [UIColor colorWithRed:23.0/255 green:146.0/255 blue:137.0/255 alpha:1] #define userBackColor RGBCOLOR_HEX(0xe6e6e6) #define userReportButtonColor RGBCOLOR_HEX(0xF3F3F3)

#define kStatusBarFrame [UIApplication sharedApplication].statusBarFrame

 

swift 就要这样写了:

/*
 默认颜色
 */
func RGBColor(r :CGFloat ,g:CGFloat,b:CGFloat) ->UIColor{
    return UIColor.init(colorLiteralRed: Float(r / 255.0), green:Float(g / 255.0) , blue:Float (b / 255.0), alpha: 1)
}

func RGBCOLOR_HEX(h:Int) ->UIColor {
    return RGBColor(r: CGFloat(((h)>>16) & 0xFF), g:   CGFloat(((h)>>8) & 0xFF), b:  CGFloat((h) & 0xFF))
}

let userBackColor = RGBCOLOR_HEX(h: 0xe6e6e6)
let userGreenColor  =  RGBColor(r: 23.0, g: 146.0, b: 137.0)
let  userReportButtonColor = RGBCOLOR_HEX(h: 0xF3F3F3)

let statusBarFrame = UIApplication.shared.statusBarFrame

 

swift 的调用方法:

class ConstController: UIViewController {
    class func customSetting()  {

        self.tabBar.tintColor = userGreenColor //这里是调用的颜色
        UINavigationBar.appearance().tintColor = UIColor.white
        UINavigationBar.appearance().barTintColor = userGreenColor
        UINavigationBar.appearance().titleTextAttributes = [NSForegroundColorAttributeName:UIColor.white,NSFontAttributeName: UIFont.systemFont(ofSize: 25.0)] //为导航栏设置字体颜色等
    }
}

 


鲜花

握手

雷人

路过

鸡蛋
该文章已有0人参与评论

请发表评论

全部评论

专题导读
热门推荐
热门话题
阅读排行榜

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap