摘要: //单例 //.h + (Instannce *)shareInstance; //.m static Instannce *instance = nil; @implementation Instannce //定义一个创建单例对象的方法 + (Instannce *)shareInstance { if (instance == nil) { instance = [... 阅读全文
posted @ 2015-08-12 13:50 终于等到Ni 阅读(1540) 评论(0) 推荐(0) 编辑