26 lines
463 B
Objective-C
26 lines
463 B
Objective-C
//
|
|
// IJSVGView.h
|
|
// IconJar
|
|
//
|
|
// Created by Curtis Hard on 04/04/2017.
|
|
// Copyright © 2017 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "IJSVG.h"
|
|
|
|
IB_DESIGNABLE
|
|
@interface IJSVGView : NSView {
|
|
IBInspectable NSString * imageName;
|
|
IBInspectable NSColor * tintColor;
|
|
|
|
IJSVG * SVG;
|
|
}
|
|
|
|
@property (nonatomic, retain) IJSVG * SVG;
|
|
|
|
+ (IJSVGView *)viewWithSVGNamed:(NSString *)name;
|
|
- (id)initWithSVG:(IJSVG *)anSvg;
|
|
|
|
@end
|