| 1234567891011121314151617181920212223242526272829 |
- //
- // YRUserInfo.m
- // UU_Ent
- //
- // Created by liujl on 2019/4/29.
- // Copyright © 2019 UAS. All rights reserved.
- //
- #import "YRUserInfo.h"
- @implementation YRUserInfo
- +(instancetype)shareManager{
-
- static YRUserInfo *instance = nil;
-
- static dispatch_once_t onceToken;
- dispatch_once(&onceToken, ^{
-
- instance = [YRUserInfo new];
-
-
- });
-
- return instance;
-
- }
- @end
|