2015年9月18日
摘要: 单例就是只有一个实例。两种常见的创建方法:1. : staticA*a=nil; +(A*)shareInstance { if(!a) a=[[selfalloc]init]; returna; }2: +(A*)shareInstance { stati... 阅读全文
posted @ 2015-09-18 11:52 不敢告诉她 阅读(133) 评论(0) 推荐(0)