ios单例的实现

来源:互联网 发布:mysql基本命令 编辑:程序博客网 时间:2024/06/02 03:07
+ (instancetype)shareInstance {    static NetworkInterface * shareInstance;    static dispatch_once_t onceToken;    dispatch_once(&onceToken, ^{        shareInstance = [[NetworkInterface alloc] init];    });    return shareInstance;}