MTConfigModel.m 528 B

1234567891011121314151617181920212223242526
  1. //
  2. // MTUserInforModel.m
  3. // FunnyFish
  4. //
  5. // Created by Simon on 2020/10/22.
  6. // Copyright © 2020 Linchng Wang. All rights reserved.
  7. //
  8. #import "MTConfigModel.h"
  9. @implementation MTConfigModel
  10. + (instancetype)shareInstance {
  11. static MTConfigModel *_instance = nil;
  12. static dispatch_once_t onceToken;
  13. dispatch_once(&onceToken, ^{
  14. _instance = [[super allocWithZone:NULL] init];
  15. });
  16. return _instance;
  17. }
  18. + (instancetype)allocWithZone:(struct _NSZone *)zone {
  19. return [self shareInstance];
  20. }
  21. @end