码迷,mamicode.com
首页 > 移动开发 > 详细

ios 常用宏

时间:2014-12-09 19:14:18      阅读:365      评论:0      收藏:0      [点我收藏+]

标签:des   io   ar   color   os   sp   for   strong   on   

//

//  CommonMacro.h

//

//

//  Created by liman on 14-7-22.

//  Copyright (c) 2014 chinamworld. All rights reserved.

//

 

#import <CoreTelephony/CTTelephonyNetworkInfo.h>

#import <CoreTelephony/CTCarrier.h>

 

//常用的IOS开发宏

 

#pragma mark - 界面部分

 

#define NavigationBar_HEIGHT 44     //导航控制器

 

#define SCREEN_WIDTH ([UIScreen mainScreen].bounds.size.width)      //屏幕宽度

 

#define SCREEN_HEIGHT ([UIScreen mainScreen].bounds.size.height)    //屏幕高度

 

#define SCREEN_HEIGHT_IPHONE_4() ([UIScreen mainScreen].bounds.size.height) == 480

 

#define SCREEN_HEIGHT_IPHONE_5_6() ([UIScreen mainScreen].bounds.size.height) == 568

 

 

 

#define RGBCOLOR(r,g,b)    [UIColor colorWithRed:(r)/255.0f green:(g)/255.0f blue:(b)/255.0f alpha:1.000]

 

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

 

 

// rgb颜色转换(16进制->10进制)

#define HexColor(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]

 

 

#pragma mark - 系统部分

 

#define IOS_VERSION [[[UIDevice currentDevice] systemVersion] floatValue]   //当前设备的系统版本

#define CurrentSystemVersion ([[UIDevice currentDevice] systemVersion])     //当前的系统版本

 

#define IOS_VERSION_6() ([[[UIDevice currentDevice] systemVersion] floatValue] >= 6.0) && ([[[UIDevice currentDevice] systemVersion] floatValue] < 7.0)

 

#define IOS_VERSION_7() ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) && ([[[UIDevice currentDevice] systemVersion] floatValue] < 8.0)

 

#define IOS_VERSION_8() [[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0

 

 

 

 

#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)

#define CurrentLanguage ([[NSLocale preferredLanguages] objectAtIndex:0])   //当前的设备的默认语言

 

#define isRetina ([[UIScreen mainScreen] scale]== 2 ? YES : NO)    //是否是高清屏

 

#define iPhone5 ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(640, 1136), [[UIScreen mainScreen] currentMode].size) : NO)    //是否是IPhone5

 

#define isPad (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad) //是否是IPAD

 

 

#pragma mark - Block

#define BACK(block) dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), block)

#define MAIN(block) dispatch_async(dispatch_get_main_queue(),block)

 

 

#pragma mark - 图片,返回UIImage

#define LoadCacheImage(name) [UIImage imageNamed:name] // 读取图片(最常用)

#define LoadDiskImage(name)  [UIImage imageWithContentsOfFile:[[NSBundle mainBundle] pathForResource:name ofType:nil]]

 

 

#define USER_DEFAULT [NSUserDefaults standardUserDefaults]      //UserDefault

 

 

#define degreesToRadian(x) (M_PI * (x) / 180.0) //弧度转角度

 

#define radianToDegrees(radian) (radian*180.0)/(M_PI)  //角度转弧度

 

 

 

//读取本地图片的imageNamed一样,但是性能比后者要强很多,两个参数,前面一个是文件名,后面一个是类型

 

#define LoadImage(_pointer) [UIImage imageNamed:[UIUtil imageName:_pointer]]  //可以用来直接传图片名字

 

#define LoadImageWithType(file,ext) [UIImage imageWithContentsOfFile:[[NSBundle mainBundle]pathForResource:file ofType:ext]]

 

 

#pragma mark - Path

#define kHomePath        NSHomeDirectory()

#define kCachePath      [NSHomeDirectory() stringByAppendingPathComponent:@"Library/Caches"]

#define kDocumentFolder [NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) objectAtIndex:0]

#define kDocumentFolder2 [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"]

#define kLibraryPath [NSHomeDirectory() stringByAppendingPathComponent:@"Library"]

#define kTempPath    NSTemporaryDirectory()

#define kMainBoundPath [[NSBundle mainBundle] bundlePath]

#define kResourcePath  [[NSBundle mainBundle] resourcePath]

#define kExecutablePath [[NSBundle mainBundle] executablePath]

 

 

#pragma mark - Setting

//当前系统设置国家的country iso code

#define countryISO  [[NSLocale currentLocale] objectForKey: NSLocaleCountryCode]

//当前系统设置语言的iso code

#define languageISO [[NSLocale currentLocale] objectForKey: NSLocaleLanguageCode]

 

staticNSString *(^CountryNameByISO)(NSString *) = ^(NSString *iso) {

    NSLocale *locale = [NSLocalecurrentLocale];

    return [locale displayNameForKey:NSLocaleCountryCodevalue:iso];

};

 

staticNSString *(^ISOCountryCodeByCarrier)() = ^() {

    CTTelephonyNetworkInfo *networkInfo = [[CTTelephonyNetworkInfoalloc] init];

    CTCarrier *carrier = [networkInfo subscriberCellularProvider];

    return [carrier isoCountryCode];

};

 

#define SIMISO                  ISOCountryCodeByCarrier()

#define CountryNameFromISO(iso) CountryNameByISO(iso)

 

 

//针对真机iPhone

#if TARGET_OS_IPHONE

//iPhone Device

#endif

 

//针对模拟器

#if TARGET_IPHONE_SIMULATOR

//iPhone Simulator

#endif

 

//ARC

#if __has_feature(objc_arc)

//compiling with ARC

#define SAFE_RELEASE(x) x = nil

#else

// compiling without ARC

#define SAFE_RELEASE(x) [x release];x=nil

#endif

 

 

 

// 注释下行则不打印日志

#define __SHOW__DLog__

 

#ifdef __SHOW__DLog__

#define DLog( s, ... ) NSLog( @"<%p %@:(%d)> %@", self, [[NSString stringWithUTF8String:__FILE__] lastPathComponent], __LINE__, [NSString stringWithFormat:(s), ##__VA_ARGS__] )

#else

#define DLog( s, ... ) {}

#endif

ios 常用宏

标签:des   io   ar   color   os   sp   for   strong   on   

原文地址:http://www.cnblogs.com/liman1990/p/4153745.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!