SVGKInlineResource.h 660 B

12345678910111213141516171819202122
  1. //
  2. // SVGKInlineResource.h
  3. // SVGKit-iOS
  4. //
  5. // Created by lizhuoli on 2018/11/2.
  6. // Copyright © 2018 na. All rights reserved.
  7. //
  8. #import "SVGKDefine.h"
  9. /** Contains some inline resource define, such as default SVG, broekn image string, etc */
  10. NS_ASSUME_NONNULL_BEGIN
  11. /** Return the brkoken image base64 string */
  12. FOUNDATION_EXPORT NSString * const SVGKGetBrokenImageString(void);
  13. /** Return the shared broken image representation */
  14. FOUNDATION_EXPORT UIImage * const SVGKGetBrokenImageRepresentation(void);
  15. /** Return the default empty SVG content string */
  16. FOUNDATION_EXPORT NSString * const SVGKGetDefaultContentString(void);
  17. NS_ASSUME_NONNULL_END