Objective-C Language
싱글 톤
수색…
소개
그것을 사용하기 전에이 스레드를 읽어야합니다. ( 싱글 톤에 대해서는 그렇게 나쁜 것일까 요? )
Grand Central Dispatch (GCD) 사용
GCD는 싱글 톤이 여러 스레드에서 호출 된 경우에도 단 한번 인스턴스화된다는 것을 보장합니다. 이것을 shared
라고하는 싱글 톤 인스턴스의 모든 클래스에 삽입하십시오.
+ (instancetype)shared {
// Variable that will point to the singleton instance. The `static`
// modifier makes it behave like a global variable: the value assigned
// to it will "survive" the method call.
static id _shared;
static dispatch_once_t _onceToken;
dispatch_once(&_onceToken, ^{
// This block is only executed once, in a thread-safe way.
// Create the instance and assign it to the static variable.
_shared = [self new];
});
return _shared;
}
Singleton 클래스를 생성하고 alloc / init을 사용하여 여러 인스턴스를 갖는 것을 방지합니다.
우리는 개발자가 자신의 인스턴스를 만드는 대신 공유 된 인스턴스 (싱글 톤 객체)를 사용해야하는 방식으로 Singleton 클래스를 만들 수 있습니다.
@implementation MySingletonClass
+ (instancetype)sharedInstance
{
static MySingletonClass *_sharedInstance = nil;
static dispatch_once_t oncePredicate;
dispatch_once(&oncePredicate, ^{
_sharedInstance = [[self alloc] initClass];
});
return _sharedInstance;
}
-(instancetype)initClass
{
self = [super init];
if(self)
{
//Do any additional initialization if required
}
return self;
}
- (instancetype)init
{
@throw [NSException exceptionWithName:@"Not designated initializer"
reason:@"Use [MySingletonClass sharedInstance]"
userInfo:nil];
return nil;
}
@end
/*Following line will throw an exception
with the Reason:"Use [MySingletonClass sharedInstance]"
when tried to alloc/init directly instead of using sharedInstance */
MySingletonClass *mySingletonClass = [[MySingletonClass alloc] init];
싱글 톤을 생성하고 또한 alloc / init, new를 사용하여 다중 인스턴스를 갖는 것을 방지합니다.
//MySingletonClass.h
@interface MYSingletonClass : NSObject
+ (instancetype)sharedInstance;
-(instancetype)init NS_UNAVAILABLE;
-(instancetype)new NS_UNAVAILABLE;
@end
//MySingletonClass.m
@implementation MySingletonClass
+ (instancetype)sharedInstance
{
static MySingletonClass *_sharedInstance = nil;
static dispatch_once_t oncePredicate;
dispatch_once(&oncePredicate, ^{
_sharedInstance = [[self alloc]init];
});
return _sharedInstance;
}
-(instancetype)init
{
self = [super init];
if(self)
{
//Do any additional initialization if required
}
return self;
}
@end
Modified text is an extract of the original Stack Overflow Documentation
아래 라이선스 CC BY-SA 3.0
와 제휴하지 않음 Stack Overflow