XLCircle.h
380 字节
//
// Circle.h
// YKL
//
// Created by Apple on 15/12/7.
// Copyright © 2015年 Apple. All rights reserved.
//
#import <UIKit/UIKit.h>
/// 安睡准备时间进度表盘
@interface XLCircle : UIView
- (instancetype)initWithFrame:(CGRect)frame lineWidth:(float)lineWidth;
@property (assign,nonatomic) float progress;
@property (assign,nonatomic) CGFloat lineWidth;
@end