20 lines
277 B
Objective-C
20 lines
277 B
Objective-C
//
|
|
// NetImageView.h
|
|
// xplan-ios
|
|
//
|
|
// Created by apple on 2021/11/2.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
#import "UIImageView+LoadImage.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@interface NetImageView : UIImageView
|
|
|
|
@property (nonatomic, copy) NSString * imgUrl;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|