mirror of
https://github.com/zhigang1992/CERoundProgressView.git
synced 2026-01-12 22:46:24 +08:00
20 lines
477 B
Objective-C
20 lines
477 B
Objective-C
//
|
|
// CERoundProgressLayer.h
|
|
// RoundProgress
|
|
//
|
|
// Created by Renaud Pradenc on 13/06/12.
|
|
// Copyright (c) 2012 Céroce. All rights reserved.
|
|
//
|
|
|
|
#import <QuartzCore/QuartzCore.h>
|
|
|
|
@interface CERoundProgressLayer : CALayer
|
|
|
|
@property (nonatomic, assign) float progress;
|
|
@property (nonatomic, assign) float startAngle;
|
|
@property (nonatomic, assign) float innerSize;
|
|
@property (nonatomic, retain) UIColor *tintColor;
|
|
@property (nonatomic, retain) UIColor *trackColor;
|
|
|
|
@end
|