TDSWebImageView.h 415 B

123456789101112131415161718192021
  1. //
  2. // XDWebImageView.h
  3. // NativeApp
  4. //
  5. // Created by JiangJiahao on 2018/10/16.
  6. // Copyright © 2018 JiangJiahao. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface TDSWebImageView : UIImageView
  11. - (void)setImageWithUrl:(NSString *)imageUrl;
  12. - (void)setImageWithUrl:(nullable NSString *)imageUrl placeholderImage:(nullable UIImage *)placeholder;
  13. @end
  14. NS_ASSUME_NONNULL_END