Toggle navigation
Toggle navigation
This project
Loading...
Sign in
iOS
/
PNChart
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Authored by
kevin
2013-11-30 11:13:52 +0800
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
2ca4575dbea34b4f4cb3499ea8b30b5097e22847
2ca4575d
1 parent
7a809aa2
Add PNCircleChart
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
44 additions
and
0 deletions
PNChartDemo/PNChart/PNCircleChart.h
PNChartDemo/PNChart/PNCircleChart.m
PNChartDemo/PNChart/PNCircleChart.h
0 → 100644
View file @
2ca4575
//
// PNCircleChart.h
// PNChartDemo
//
// Created by kevinzhow on 13-11-30.
// Copyright (c) 2013年 kevinzhow. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface
PNCircleChart
:
UIView
@end
...
...
PNChartDemo/PNChart/PNCircleChart.m
0 → 100644
View file @
2ca4575
//
// PNCircleChart.m
// PNChartDemo
//
// Created by kevinzhow on 13-11-30.
// Copyright (c) 2013年 kevinzhow. All rights reserved.
//
#import "PNCircleChart.h"
@implementation
PNCircleChart
-
(
id
)
initWithFrame
:(
CGRect
)
frame
{
self
=
[
super
initWithFrame
:
frame
];
if
(
self
)
{
// Initialization code
}
return
self
;
}
/*
// Only override drawRect: if you perform custom drawing.
// An empty implementation adversely affects performance during animation.
- (void)drawRect:(CGRect)rect
{
// Drawing code
}
*/
@end
...
...
Please
register
or
login
to post a comment