UIImageView+Extension.h 316 B

123456789101112131415161718192021
  1. //
  2. // UIImageView+Extension.h
  3. // Timi
  4. //
  5. // Created by 翟玉磊 on 2021/5/18.
  6. //
  7. #import <UIKit/UIKit.h>
  8. NS_ASSUME_NONNULL_BEGIN
  9. @interface UIImageView (Extension)
  10. /// 加载本地mainBundle里的gi动画
  11. /// @param name 文件名字
  12. - (void)loadGIFImageNamed:(NSString *)name;
  13. @end
  14. NS_ASSUME_NONNULL_END