diff --git a/IJSVGExample/IJSVGExample.xcodeproj/project.xcworkspace/xcuserdata/curtishard.xcuserdatad/UserInterfaceState.xcuserstate b/IJSVGExample/IJSVGExample.xcodeproj/project.xcworkspace/xcuserdata/curtishard.xcuserdatad/UserInterfaceState.xcuserstate
index 8039625..dbca201 100644
Binary files a/IJSVGExample/IJSVGExample.xcodeproj/project.xcworkspace/xcuserdata/curtishard.xcuserdatad/UserInterfaceState.xcuserstate and b/IJSVGExample/IJSVGExample.xcodeproj/project.xcworkspace/xcuserdata/curtishard.xcuserdatad/UserInterfaceState.xcuserstate differ
diff --git a/IJSVGExample/IJSVGExample/Base.lproj/MainMenu.xib b/IJSVGExample/IJSVGExample/Base.lproj/MainMenu.xib
index 6876e68..c6be745 100755
--- a/IJSVGExample/IJSVGExample/Base.lproj/MainMenu.xib
+++ b/IJSVGExample/IJSVGExample/Base.lproj/MainMenu.xib
@@ -678,31 +678,9 @@
-
-
+
+
-
-
diff --git a/IJSVGExample/IJSVGExample/SVGView.h b/IJSVGExample/IJSVGExample/SVGView.h
index 735d755..9d172e0 100644
--- a/IJSVGExample/IJSVGExample/SVGView.h
+++ b/IJSVGExample/IJSVGExample/SVGView.h
@@ -11,11 +11,9 @@
@interface SVGView : NSView {
+@private
IJSVG * svg;
}
-- (IBAction)switchToCoreGraphics:(id)sender;
-- (IBAction)switchToCoreAnimation:(id)sender;
-
@end
diff --git a/IJSVGExample/IJSVGExample/SVGView.m b/IJSVGExample/IJSVGExample/SVGView.m
index 4a2eec0..8626dac 100644
--- a/IJSVGExample/IJSVGExample/SVGView.m
+++ b/IJSVGExample/IJSVGExample/SVGView.m
@@ -29,21 +29,9 @@
return self;
}
-- (void)switchToCoreGraphics:(id)sender
-{
- svg.renderingEngine = IJSVGRenderingEngineQuartz;
- [self setNeedsDisplay:YES];
-}
-
-- (void)switchToCoreAnimation:(id)sender
-{
- svg.renderingEngine = IJSVGRenderingEngineLayered;
- [self setNeedsDisplay:YES];
-}
-
- (IJSVG *)svg
{
- return [IJSVG svgNamed:@"clipped"];
+ return [IJSVG svgNamed:@"intertwingly"];
}
- (void)drawRect:(NSRect)dirtyRect