16 lines
359 B
Objective-C
Executable File
16 lines
359 B
Objective-C
Executable File
//
|
|
// HKPieChartView.h
|
|
// PieChart
|
|
//
|
|
// Created by hukaiyin on 16/6/20.
|
|
// Copyright © 2016年 HKY. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface HKPieChartView : UIView
|
|
@property (nonatomic, assign) BOOL inCounting;
|
|
- (void)updatePercent:(CGFloat)percent animation:(BOOL)animationed;
|
|
- (void)endProgressWithString:(NSString *)text;
|
|
@end
|