單例模式的作用我就不在此解釋了稚疹,使用單例模式的代碼展示如下居灯。
首先,在頭文件中,要禁用生成實例的方法怪嫌,并且聲明單例的類方法
//
// MySingleton.h
// SingleTon
//
// Created by Realank on 15/8/4.
// Copyright (c) 2015年 Realank. All rights reserved.
//
#import <Foundation/Foundation.h>
@interface MySingleton : NSObject
@property (copy,nonatomic) NSString* string;
+(instancetype) sharedInstance;
// clue for improper use (produces compile time error)
+(instancetype) alloc __attribute__((unavailable("alloc not available, call sharedInstance instead")));
-(instancetype) init __attribute__((unavailable("init not available, call sharedInstance instead")));
+(instancetype) new __attribute__((unavailable("new not available, call sharedInstance instead")));
@end
在單例類方法中創(chuàng)建單例實例义锥,這例使用了dispatch_once這個tricky
//
// MySingleton.m
// SingleTon
//
// Created by Realank on 15/8/4.
// Copyright (c) 2015年 Realank. All rights reserved.
//
#import "MySingleton.h"
@implementation MySingleton
+(instancetype) sharedInstance {
static dispatch_once_t pred;
static id shared = nil; //設(shè)置成id類型的目的,是為了繼承
dispatch_once(&pred, ^{
shared = [[super alloc] initUniqueInstance];
});
return shared;
}
-(instancetype) initUniqueInstance {
if (self = [super init]) {
_string = @"hello";
}
return self;
}
@end
這個單例類使用方法如下:
//
// main.m
// SingleTon
//
// Created by Realank on 15/8/4.
// Copyright (c) 2015年 Realank. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MySingleton.h"
int main(int argc, const char * argv[]) {
@autoreleasepool {
// insert code here...
MySingleton *sgt = [MySingleton sharedInstance];
NSLog(@"%@",sgt.string);
}
return 0;
}
至此岩灭,希望你喜歡