26 lines
669 B
C
26 lines
669 B
C
|
|
//
|
||
|
|
// CYH_PrefixHeader.h
|
||
|
|
// TreeHole
|
||
|
|
//
|
||
|
|
// Created by iOS on 2023/2/6.
|
||
|
|
// Copyright © 2023 CYH. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#ifndef CYH_PrefixHeader_h
|
||
|
|
#define CYH_PrefixHeader_h
|
||
|
|
|
||
|
|
#import "QMUIKit.h"
|
||
|
|
#import "UIView+Creat.h"
|
||
|
|
#import "NSString+CYH.h"
|
||
|
|
#import "YYModel.h"
|
||
|
|
#import "THNetworkInterfaceService.h"
|
||
|
|
//#import "THPopupInterfaceService.h"
|
||
|
|
|
||
|
|
#define UIColorMakeWhiteAlpha(alphaValue) [UIColor colorWithWhite:1 alpha:alphaValue]
|
||
|
|
#define UIColorMakeWhiteAndAlpha(whiteColorValue, alphaValue) [UIColor colorWithWhite:whiteColorValue alpha:alphaValue]
|
||
|
|
|
||
|
|
#define cyh_arc4random(X,Y) ([THNetworkInterfaceService randomBetween:X And:Y])
|
||
|
|
|
||
|
|
|
||
|
|
#endif /* CYH_PrefixHeader_h */
|