Files
yinmeng-ios/xplan-ios/Base/UI/UIImageView/NetImageConfig.m
2021-11-25 18:06:08 +08:00

22 lines
258 B
Objective-C

//
// NetImageConfig.m
// xplan-ios
//
// Created by zu on 2021/11/25.
//
#import "NetImageConfig.h"
@implementation NetImageConfig
- (instancetype)init
{
self = [super init];
if (self) {
_autoLoad = YES;
}
return self;
}
@end