20 lines
362 B
Objective-C
20 lines
362 B
Objective-C
//
|
|
// YProgressView.h
|
|
// Yoosee
|
|
//
|
|
// Created by guojunyi on 14-7-23.
|
|
// Copyright (c) 2014年 guojunyi. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface YProgressView : UIView
|
|
@property (nonatomic) CGFloat angle;
|
|
@property (nonatomic) BOOL isStartAnim;
|
|
@property (nonatomic,strong) UIImageView *backgroundView;
|
|
|
|
-(void)start;
|
|
-(void)stop;
|
|
|
|
@end
|