1234567891011121314151617181920212223242526 |
- //
- // MTUserInforModel.m
- // FunnyFish
- //
- // Created by Simon on 2020/10/22.
- // Copyright © 2020 Linchng Wang. All rights reserved.
- //
- #import "MTConfigModel.h"
- @implementation MTConfigModel
- + (instancetype)shareInstance {
- static MTConfigModel *_instance = nil;
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
- _instance = [[super allocWithZone:NULL] init];
- });
- return _instance;
- }
- + (instancetype)allocWithZone:(struct _NSZone *)zone {
- return [self shareInstance];
- }
- @end
|