码迷,mamicode.com
首页 > 其他好文 > 详细

【非凡程序员】 OC第十二节课 (单例模式)

时间:2015-06-03 01:03:18      阅读:109      评论:0      收藏:0      [点我收藏+]

标签:

设计模式分为三类:创建模式,结构模式,行为模式。共有26中模式

单例模式

1.main函数

#import <Foundation/Foundation.h>
#import "Theme.h"

int main(int argc, const char * argv[]) {
    @autoreleasepool  {
        // insert code here...
        NSLog(@"Hello, World!");
        //单例最好封装alloc,不要在main里实例化
        Theme * q1 =[Theme themeaa];
        q1.name = @"哈哈";
       
        Theme * q2 =[Theme themeaa];
//        q2.name = @"呵呵";
        NSLog(@"%@  %@", q1.name,q2.name);
    }
    return 0;
}

2.Theme.h文件

#import <Foundation/Foundation.h>

@interface Theme : NSObject

+ (id) themeaa;

@property (nonatomic,assign) NSString *name;


@end

3.Theme.m文件

#import "Theme.h"

@implementation Theme

//static

Theme * a;
- (id) init
{
    //Theme * a;
    self = [super init];
    if ([self isEqualTo:nil])
    {
        NSLog(@"%@",self.name);
    }
    return self;
}

+ (id) themeaa
{
    //Theme * a;
    if (a == nil) {
        a = [[Theme alloc]init];
    }
    return  a;
}

@end

【非凡程序员】 OC第十二节课 (单例模式)

标签:

原文地址:http://my.oschina.net/u/2366900/blog/424089

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