zoukankan      html  css  js  c++  java
  • IOS开发中经常使用的宏定义

    ios讨论群1群:135718460

    有些时候。我们须要将代码简洁化,这样便于读代码。我们能够将一些不变的东东抽取出来。将变化的东西作为參数。

    定义为宏,这样在写的时候就简单多了。


    以下例举了一些经常使用的宏定义和大家分享:

    1. 推断设备的操作系统是不是ios7

    #define IOS7   (  [[[UIDevice currentDevice].systemVersion doubleValue] >= 7.0] )

    2. 推断当前设备是不是iPhone5 

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




    3.获取当前屏幕的高度
    #define kMainScreenHeight ([UIScreen mainScreen].applicationFrame.size.height)

    4.获取当前屏幕的宽度

    #define kMainScreenWidth  ([UIScreen mainScreen].applicationFrame.size.width)

    5.获得RGB颜色

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


    6..自己定义Log

    #ifdef DEBUG

    #define SMSLog(...) NSLog(__VA_ARGS__)

    #else

    #define SMSLog(...)

    #endif


    7.单例

    // @interface
    #define singleton_interface(className) 
    + (className *)shared##className;
    
    
    // @implementation
    #define singleton_implementation(className) 
    static className *_instance; 
    + (id)allocWithZone:(struct _NSZone *)zone 
    { 
        static dispatch_once_t onceToken; 
        dispatch_once(&onceToken, ^{ 
            _instance = [super allocWithZone:zone]; 
        }); 
        return _instance; 
    } 
    + (className *)shared##className 
    { 
        static dispatch_once_t onceToken; 
        dispatch_once(&onceToken, ^{ 
            _instance = [[self alloc] init]; 
        }); 
        return _instance; 
    }




  • 相关阅读:
    uva 442 Matrix Chain Multiplication
    结对编程项目之队友代码分析
    [转] 为什么要使用NoSQL
    Compare Linq2Sql with NHibernate
    使用linq2sql 的DetailView 如何保存多对多关系
    工作流入门
    XML字段的用处
    DesignTimeResourceProviderFactory 不给力啊
    如何给XMLDatasource做分页和排序
    ORM的烦恼
  • 原文地址:https://www.cnblogs.com/zhchoutai/p/7223550.html
Copyright © 2011-2022 走看看