美文网首页
IOS 常用的宏

IOS 常用的宏

作者: 越天高 | 来源:发表于2020-07-27 20:41 被阅读0次

    如果前一天有没有做完的地方我们 可以使用

    #warning TODO
    
    #define APPDELEGATE ((AppDelegate*)[[UIApplication sharedApplication] delegate])
    #define WBColor(r,g,b,a) [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:a]
    
    #pragma mark-- Frame
    #define WIDTH_SCREEN  [UIScreen mainScreen].bounds.size.width
    #define HEIGHT_SCREEN [UIScreen mainScreen].bounds.size.height
    #define HEIGHT_STATUSBAR   20
    #define HEIGHT_TABBAR      49
    #define HEIGHT_NAVBAR      44
    #define HEIGHT_CHATBOXVIEW 215
    
    #pragma mark -Color
    #define DEFAULT_NAVBAR_COLOR               WBColor(20.0,20.0,20.0,0.9)
    #define DEFAULT_BACKGROUND_COLOR           WBColor(239.0,239.0,244.0,1.0)
    
    #define DEFAULT_CHATBOX_COLOR              WBColor(244.0,244.0,246.0,1.0)
    #define DEFAULT_CHAT_BACKGROUNT_COLOR      WBColor(235.0,235.0,235.0,1.0)
    #define DEFAULT_SEARCHBAR_COLOR            WBColor(239.0,239.0,244.0,1.0)
    #define DEFAULT_GREEN_COLOR                WBColor(2.0,187.0,0.0,1.0)
    #define DEFAULT_TEXT_GRAY_COLOR            [UIColor grayColor]
    #define DEFAULT_LINE_GRAT_COLOR            WBColor(188.0,188.0,188.0,0.6)
    
    #pragma mark -path
    #define     PATH_DOCUMENT                   [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]
    #define     PATH_CHATREC_IMAGE              [PATH_DOCUMENT stringByAppendingPathComponent:@"ChatRec/Images"]//
    

    相关文章

      网友评论

          本文标题:IOS 常用的宏

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