码迷,mamicode.com
首页 > 编程语言 > 详细

Swift实现单例

时间:2015-03-03 20:44:10      阅读:179      评论:0      收藏:0      [点我收藏+]

标签:swift   单例   

单例概念

  • 内存中有一个唯一的实例
  • 提供唯一的全局访问入口 SingleInstance.sharedInstance

在Swift中用let定义常量,并且是线程安全的

import UIKit
class SingleInstance{
    static let sharedInstance = SingleInstance()
    init() {
        println("实例化")
    }
}

Swift实现单例

标签:swift   单例   

原文地址:http://blog.csdn.net/ben_xiao_hai/article/details/44042639

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