Skip to content

Commit

Permalink
Add import for cocoapods validate
Browse files Browse the repository at this point in the history
  • Loading branch information
Pluto-Y committed Apr 12, 2016
1 parent efe718e commit 50217dd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
Binary file not shown.
8 changes: 5 additions & 3 deletions iOS-Echarts/Model/PYAxisTick.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@
//

#import "PYAxisTick.h"
#import "PYColor.h"
#import "PYLineStyle.h"

@implementation PYAxisTick

Expand All @@ -15,12 +17,12 @@ - (instancetype)init
self = [super init];
if (self) {
_interval = @"auto";
_onGap = nil;
_onGap = NO;
_inside = NO;
_length = @5;
_length = @(5);
_lineStyle = [PYLineStyle new];
_lineStyle.color = PYRGBA(3, 3, 3, 1);
_lineStyle.width = @1;
_lineStyle.width = @(1);
}
return self;
}
Expand Down
1 change: 1 addition & 0 deletions iOS-Echarts/Model/PYSplitArea.m
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@
//

#import "PYSplitArea.h"
#import "PYColor.h"

@implementation PYSplitArea

Expand Down

0 comments on commit 50217dd

Please sign in to comment.