Showing
2 changed files
with
44 additions
and
0 deletions
PNChartDemo/PNChart/PNCircleChart.h
0 → 100644
PNChartDemo/PNChart/PNCircleChart.m
0 → 100644
| 1 | +// | ||
| 2 | +// PNCircleChart.m | ||
| 3 | +// PNChartDemo | ||
| 4 | +// | ||
| 5 | +// Created by kevinzhow on 13-11-30. | ||
| 6 | +// Copyright (c) 2013年 kevinzhow. All rights reserved. | ||
| 7 | +// | ||
| 8 | + | ||
| 9 | +#import "PNCircleChart.h" | ||
| 10 | + | ||
| 11 | +@implementation PNCircleChart | ||
| 12 | + | ||
| 13 | +- (id)initWithFrame:(CGRect)frame | ||
| 14 | +{ | ||
| 15 | + self = [super initWithFrame:frame]; | ||
| 16 | + if (self) { | ||
| 17 | + // Initialization code | ||
| 18 | + } | ||
| 19 | + return self; | ||
| 20 | +} | ||
| 21 | + | ||
| 22 | +/* | ||
| 23 | +// Only override drawRect: if you perform custom drawing. | ||
| 24 | +// An empty implementation adversely affects performance during animation. | ||
| 25 | +- (void)drawRect:(CGRect)rect | ||
| 26 | +{ | ||
| 27 | + // Drawing code | ||
| 28 | +} | ||
| 29 | +*/ | ||
| 30 | + | ||
| 31 | +@end |
-
Please register or login to post a comment