//// DACircularProgressView.h// DACircularProgress//// Created by Daniel Amitay on 2/6/12.// Copyright (c) 2012 Daniel Amitay. All rights reserved.//#import <UIKit/UIKit.h>@interfaceDACircularProgressView:UIView@property(nonatomic,strong)UIColor*trackTintColorUI_APPEARANCE_SELECTOR;@property(nonatomic,strong)UIColor*progressTintColorUI_APPEARANCE_SELECTOR;@property(nonatomic,strong)UIColor*innerTintColorUI_APPEARANCE_SELECTOR;@property(nonatomic)NSIntegerroundedCornersUI_APPEARANCE_SELECTOR;// Can not use BOOL with UI_APPEARANCE_SELECTOR :-(@property(nonatomic)CGFloatthicknessRatioUI_APPEARANCE_SELECTOR;@property(nonatomic)NSIntegerclockwiseProgressUI_APPEARANCE_SELECTOR;// Can not use BOOL with UI_APPEARANCE_SELECTOR :-(@property(nonatomic)CGFloatprogress;@property(nonatomic)CGFloatindeterminateDurationUI_APPEARANCE_SELECTOR;@property(nonatomic)NSIntegerindeterminateUI_APPEARANCE_SELECTOR;// Can not use BOOL with UI_APPEARANCE_SELECTOR :-(-(void)setProgress:(CGFloat)progressanimated:(BOOL)animated;-(void)setProgress:(CGFloat)progressanimated:(BOOL)animatedinitialDelay:(CFTimeInterval)initialDelay;-(void)setProgress:(CGFloat)progressanimated:(BOOL)animatedinitialDelay:(CFTimeInterval)initialDelaywithDuration:(CFTimeInterval)duration;@end