RASingleton.m 409 B

123456789101112131415161718192021222324
  1. //
  2. // RASingleton.m
  3. // Apex And Drivers
  4. //
  5. // Created by Jack on 2018/6/6.
  6. // Copyright © 2018年 USAI. All rights reserved.
  7. //
  8. #import "RASingleton.h"
  9. static RASingleton *singleton;
  10. @implementation RASingleton
  11. + (instancetype)sharedInstance {
  12. static dispatch_once_t tocken;
  13. dispatch_once(&tocken, ^{
  14. singleton = [[RASingleton alloc] init];
  15. });
  16. return singleton;
  17. }
  18. @end