SVGStyleCatcher.h 574 B

123456789101112131415161718192021222324
  1. //
  2. // SVGStyelCatcher.h
  3. // StyleTouch
  4. //
  5. // Created by Kevin Stich on 3/6/12.
  6. // Copyright (c) 2012 __MyCompanyName__. All rights reserved.
  7. //
  8. #ifndef StyleTouch_SVGStyelCatcher_h
  9. #define StyleTouch_SVGStyelCatcher_h
  10. @class SVGElement;
  11. @protocol SVGStyleCatcher <NSObject>
  12. //-(void)styleCatchElement:(SVGElement *)styledLayer forClass:(NSString *)colorIndex;
  13. //-(void)styleCatchNewStyle:(NSString *)className;
  14. -(void)styleCatchLayer:(CALayer *)styledLayer forClass:(NSString *)colorIndex;
  15. -(UIColor *)styleCatchOverrideFill:(NSString *)fillClassName;
  16. @end
  17. #endif