美文网首页
PrefixHeader.pch

PrefixHeader.pch

作者: March_Cullen | 来源:发表于2017-03-28 21:50 被阅读0次
// PrefixHeader.pch

// Created by YoungLee on **/**/**
// Copyright (c) **** YoungLee.All rights reserved.

#ifndef _1______PrefixHeader_pch
#define _1______PrefixHeader_pch

#import "UIView + LYExtension.h"
#import "UIBarButtonItem + LYExtension.h"

#ifdef DEBUG
#define LYLog(...) NSLog(__VA_ARGS__)
#else
#define LYLog(...)
#endif

#define LYLogFunc LYLog(@"%s", __func__)

#define LYRBGColor(r, g, b) [UIColor colorWithRed:(r) / 255.0  green:(g) / 255.0 blue:(b) / 255.0 alpha:1.0]

#define LYRGBAColor(r, g, b, a) [UIColor colorWithRed:(r) / 255.0 green:(g) / 255.0 blue:(b) / 255.0 alpha:(a)]

#define LYGlobalBackgroundColor LYRGBColor(223, 223, 223)

#endif

相关文章

网友评论

      本文标题:PrefixHeader.pch

      本文链接:https://www.haomeiwen.com/subject/hfysottx.html