美文网首页
OC和Swift的单例模式

OC和Swift的单例模式

作者: 乡水情缘 | 来源:发表于2017-06-02 16:52 被阅读16次

OC版的单例模式

// OC版
+ (instancetype)sharedInstance
{
    static id sharedInstance = nil;

    static dispatch_once_t onceToken;
    dispatch_once(&onceToken, ^{

        sharedInstance = [[self alloc] init];
    });

    return sharedInstance;
}

Swift的单例模式

lass TheOneAndOnlyKraken {
    static let sharedInstance = TheOneAndOnlyKraken()
    private init() {} //This prevents others from using the default '()' initializer for this class.
}

这地方就不做过多的解释了,想细的请挫下面的链接
http://www.cocoachina.com/swift/20151207/14584.html

相关文章

网友评论

      本文标题:OC和Swift的单例模式

      本文链接:https://www.haomeiwen.com/subject/pbuufxtx.html