ios 单例写法

来源:互联网 发布:学校网络结构拓扑图 编辑:程序博客网 时间:2024/05/31 15:19

+ (instancetype)defaultManager

{

    static dispatch_once_t once;

    dispatch_once(&once, ^{

        

        controller = [[id alloc] init];

      

    });

    return controller;

}

单例

0 0
原创粉丝点击