kevin

Add PNCircleChart

  1 +//
  2 +// PNCircleChart.h
  3 +// PNChartDemo
  4 +//
  5 +// Created by kevinzhow on 13-11-30.
  6 +// Copyright (c) 2013年 kevinzhow. All rights reserved.
  7 +//
  8 +
  9 +#import <UIKit/UIKit.h>
  10 +
  11 +@interface PNCircleChart : UIView
  12 +
  13 +@end
  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