98c9d4f10b
Now supports dashed strokes and line cap modes for lines that dont have a closed path. Fixed issue with predefined colors not being found. Added more examples to the example
19 lines
283 B
Objective-C
19 lines
283 B
Objective-C
//
|
|
// SVGExampleView5.m
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 05/09/2014.
|
|
// Copyright (c) 2014 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "SVGExampleView5.h"
|
|
|
|
@implementation SVGExampleView5
|
|
|
|
- (IJSVG *)svg
|
|
{
|
|
return [[IJSVG svgNamed:@"dashed"] retain];
|
|
}
|
|
|
|
@end
|