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