UIImage+MOSVG.h 457 B

12345678910111213141516171819202122232425
  1. //
  2. // UIImage+MOSVG.h
  3. // MiMoLive
  4. //
  5. // Created by SuperC on 2023/11/21.
  6. //
  7. #import "SVGKit.h"
  8. #import "SVGKImage.h"
  9. #import "SVGKParser.h"
  10. #import <UIKit/UIKit.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. @interface UIImage (MOSVG)
  13. + (UIImage*)br_svgImageNamed:(NSString*)name;
  14. + (UIImage*)br_svgImageNamed:(NSString*)name size:(CGSize)size;
  15. + (UIImage*)br_svgImageNamed:(NSString*)name size:(CGSize)size tintColor:(UIColor*)tintColor;
  16. @end
  17. NS_ASSUME_NONNULL_END