
- Removed YuMi/Library/ (138 MB, not tracked) - Removed YuMi/Resources/ (23 MB, not tracked) - Removed old version assets (566 files, not tracked) - Excluded Pods/, xcuserdata/ and other build artifacts - Clean repository optimized for company server deployment
23 lines
423 B
Objective-C
23 lines
423 B
Objective-C
//
|
|
// NetImageConfig.h
|
|
// YUMI
|
|
//
|
|
// Created by zu on 2021/11/25.
|
|
//
|
|
|
|
#import <Foundation/Foundation.h>
|
|
#import "UIImageConstant.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NetImageConfig : NSObject
|
|
|
|
@property (nonatomic, assign) BOOL autoLoad;
|
|
@property (nonatomic, assign) ImageType imageType;
|
|
@property (nonatomic, assign) CGFloat radius;
|
|
@property (nonatomic, strong) UIImage * placeHolder;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|