Preface
Macro definitions can be said to play an important role in C-system development. In order to simplify the development process and improve work efficiency, some commonly used macro definitions have been collected, which will be updated from time to time in the future.
element
//NavBar height#define NAVIGATIONBAR_HEIGHT 44 //StatusBar Height#define STATUSBAR_HEIGHT 20 //Get screen width and height#define SCREEN_WIDTH ([UIScreen mainScreen].) #define SCREEN_HEIGHT ([UIScreen mainScreen].) //Content view height#define CONTENT_HEIGHT (SCREEN_HEIGHT - NAVIGATIONBAR_HEIGHT - STATUSBAR_HEIGHT) //KWindow #define KWINDOW [UIApplication sharedApplication].keyWindow //Screen resolution#define SCREEN_RESOLUTION (SCREEN_WIDTH * SCREEN_HEIGHT * ([UIScreen mainScreen].scale)) //Status bar + Navigation bar Height#define STATUS_AND_NAVIGATION_HEIGHT ((STATUSBAR_HEIGHT) + (NAVIGATIONBAR_HEIGHT))
//(Add to the system Log, add custom related information)#define NSLog(format, ...) do { \ fprintf(stderr, "<%s : %d> %s\n", \ [[[NSString stringWithUTF8String:__FILE__] lastPathComponent] UTF8String], \ __LINE__, __func__); \ (NSLog)((format), ##__VA_ARGS__); \ fprintf(stderr, "-------\n"); \ } while (0)
3. System
//Get the current system version#define IOS_VERSION [[[UIDevice currentDevice] systemVersion] floatValue] #define CurrentSystemVersion [[UIDevice currentDevice] systemVersion] //Get the current system language#define CurrentLanguage ([[NSLocale preferredLanguages] objectAtIndex:0]) //Judge if it is a real opportunity#if TARGET_OS_IPHONE //iPhone Device #endif //Judge whether it is an emulator or not#if TARGET_IPHONE_SIMULATOR //iPhone Simulator #endif //Is it in ARC environment#if __has_feature(objc_arc) //compiling with ARC #else //compiling without ARC #endif //Judge whether it is an iPhone or not#define IS_IPHONE (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPhone) //Judge whether it is an iPad#define IS_IPAD (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) //Judge whether it is an ipod#define IS_IPOD ([[[UIDevice currentDevice] model] isEqualToString:@"iPod touch"]) //Judge whether it is an iPhone 5(S)(E)#define iPhone5SE [[UIScreen mainScreen] bounds]. == 320.0f &&[[UIScreen mainScreen] bounds]. == 568.0f //Judge whether it is iPhone 6/6s#define iPhone6_6s [[UIScreen mainScreen] bounds]. == 375.0f &&[[UIScreen mainScreen] bounds]. == 667.0f //Judge whether it is an iPhone 6Plus/6sPlus#define iPhone6Plus_6sPlus [[UIScreen mainScreen] bounds]. == 414.0f && [[UIScreen mainScreen] bounds]. == 736.0f //Judge iOS or higher system version#define IOS_VERSION_6_OR_LATER (([[[UIDevice currentDevice] systemVersion] floatValue]>=6.0)? (YES):(NO)) #define IOS_VERSION_7_OR_LATER (([[[UIDevice currentDevice] systemVersion] floatValue]>=7.0)? (YES):(NO)) #define IOS_VERSION_8_OR_LATER (([[[UIDevice currentDevice] systemVersion] floatValue]>=8.0)? (YES):(NO)) #define IOS_VERSION_9_OR_LATER (([[[UIDevice currentDevice] systemVersion] floatValue]>=9.0)? (YES):(NO)) #define IOS_VERSION_10_OR_LATER (([[[UIDevice currentDevice] systemVersion] floatValue]>=10.0)? (YES):(NO)) //System version tool#define SYSTEM_VERSION_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedSame) #define SYSTEM_VERSION_GREATER_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedDescending) #define SYSTEM_VERSION_GREATER_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedAscending) #define SYSTEM_VERSION_LESS_THAN(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] == NSOrderedAscending) #define SYSTEM_VERSION_LESS_THAN_OR_EQUAL_TO(v) ([[[UIDevice currentDevice] systemVersion] compare:v options:NSNumericSearch] != NSOrderedDescending) //Detect whether it is in the vertical screen state#define IsPortrait ([UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortrait || [UIApplication sharedApplication].statusBarOrientation == UIInterfaceOrientationPortraitUpsideDown)
4. Color category
// Color settings with RGBA#define COLOR(R, G, B, A) [UIColor colorWithRed:R/255.0 green:G/255.0 blue:B/255.0 alpha:A] //Set random colors (it's very useful when debugging)#define RandomColor [UIColor colorWithRed:arc4random_uniform(256)/255.0 green:arc4random_uniform(256)/255.0 blue:arc4random_uniform(256)/255.0 alpha:1.0] //Hexadecimal color#define RGB16Color(rgbValue) [UIColor colorWithRed:((float)((rgbValue & 0xFF0000) >> 16))/255.0 green:((float)((rgbValue & 0xFF00) >> 8))/255.0 blue:((float)(rgbValue & 0xFF))/255.0 alpha:1.0]
5. Notification
//Get notification center#define NotificationCenter [NSNotificationCenter defaultCenter] //Send notifications quickly#define Post_Notify(_notificationName, _obj, _userInfoDictionary) [[NSNotificationCenter defaultCenter] postNotificationName: _notificationName object: _obj userInfo: _userInfoDictionary]; //Add an observer#define Add_Observer(_notificationName, _observer, _observerSelector, _obj) [[NSNotificationCenter defaultCenter] addObserver:_observer selector:@selector(_observerSelector) name:_notificationName object: _obj]; //Remove the observer#define Remove_Observer(_observer) [[NSNotificationCenter defaultCenter] removeObserver: _observer];
6. Data storage
//NSUserDefaults Instantiation#define USER_DEFAULT [NSUserDefaults standardUserDefaults] //Get temp#define kPathTemp NSTemporaryDirectory() //Get the sandbox Document#define kPathDocument [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,NSUserDomainMask, YES) firstObject] //Get the sandbox cache#define kPathCache [NSSearchPathForDirectoriesInDomains(NSCachesDirectory,NSUserDomainMask, YES) firstObject]
7. Singleton mode
#define SingleH(name) +(instancetype)share##name; #if __has_feature(objc_arc) //The conditions meet ARC#define SingleM(name) static id _instance;\ +(instancetype)allocWithZone:(struct _NSZone *)zone\ {\ static dispatch_once_t onceToken;\ dispatch_once(&onceToken, ^{\ _instance = [super allocWithZone:zone];\ });\ \ return _instance;\ }\ \ +(instancetype)share##name\ {\ return [[self alloc]init];\ }\ \ -(id)copyWithZone:(NSZone *)zone\ {\ return _instance;\ }\ \ -(id)mutableCopyWithZone:(NSZone *)zone\ {\ return _instance;\ } #else //MRC #define SingleM(name) static id _instance;\ +(instancetype)allocWithZone:(struct _NSZone *)zone\ {\ static dispatch_once_t onceToken;\ dispatch_once(&onceToken, ^{\ _instance = [super allocWithZone:zone];\ });\ \ return _instance;\ }\ \ +(instancetype)share##name\ {\ return [[self alloc]init];\ }\ \ -(id)copyWithZone:(NSZone *)zone\ {\ return _instance;\ }\ \ -(id)mutableCopyWithZone:(NSZone *)zone\ {\ return _instance;\ }\ -(oneway void)release\ {\ }\ \ -(instancetype)retain\ {\ return _instance;\ }\ \ -(NSUInteger)retainCount\ {\ return MAXFLOAT;\ } #endif
8. Time
//Get system time stamp#define CurentTime [NSString stringWithFormat:@"%ld", (long)[[NSDate date] timeIntervalSince1970]]
9. Permissions
//Get camera permission status#define CameraStatus [AVCaptureDevice authorizationStatusForMediaType:AVMediaTypeVideo] #define CameraDenied ((CameraStatus == AVAuthorizationStatusRestricted)||(CameraStatus == AVAuthorizationStatusDenied)) #define CameraAllowed (!CameraDenyed) /** Positioning permissions*/ #define LocationStatus [CLLocationManager authorizationStatus]; #define LocationAllowed ([CLLocationManager locationServicesEnabled] && !((status == kCLAuthorizationStatusDenied) || (status == kCLAuthorizationStatusRestricted))) #define LocationDenied (!LocationAllowed) /** Message push permission*/ #define PushClose (([[UIDevice currentDevice].systemVersion floatValue]>=8.0f)?(UIUserNotificationTypeNone == [[UIApplication sharedApplication] currentUserNotificationSettings].types):(UIRemoteNotificationTypeNone == [[UIApplication sharedApplication] enabledRemoteNotificationTypes])) #define PushOpen (!PushClose)
10.Load local files
#define LoadImage(file,type) [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:file ofType:type]] #define LoadArray(file,type) [NSArray arrayWithContentsOfFile:[[NSBundle mainBundle]pathForResource:file ofType:type]] #define LoadDict(file,type) [NSDictionary dictionaryWithContentsOfFile:[[NSBundle mainBundle]pathForResource:file ofType:type]]
//Weak Quotation#define WeakWithNameAndObject(obj,name) __weak typeof(obj) weak##name = obj //Strong Quote#define StrongWithNameAndObject(obj,name) __strong typeof(obj) strong##name = obj
Summarize
The above is the entire content of this article. I hope that the content of this article has certain reference value for everyone's study or work. If you have any questions, you can leave a message to communicate. Thank you for your support.