mirror of
https://github.com/Matte23/circolapp.git
synced 2025-12-05 23:19:10 +00:00
24 lines
375 B
Objective-C
24 lines
375 B
Objective-C
//
|
|
// HTMLMarker.m
|
|
// HTMLKit
|
|
//
|
|
// Created by Iska on 02/03/15.
|
|
// Copyright (c) 2015 BrainCookie. All rights reserved.
|
|
//
|
|
|
|
#import "HTMLMarker.h"
|
|
|
|
@implementation HTMLMarker
|
|
|
|
+ (instancetype)marker
|
|
{
|
|
static dispatch_once_t onceToken;
|
|
static HTMLMarker *singleton = nil;
|
|
dispatch_once(&onceToken, ^{
|
|
singleton = [[self alloc] init];
|
|
});
|
|
return singleton;
|
|
}
|
|
|
|
@end
|