Files
motikyapp/Motiky/MOProgressView.h
2013-06-26 19:17:34 +08:00

24 lines
454 B
Objective-C

//
// MOProgressView.h
// testProgressBar
//
// Created by notedit on 5/15/13.
// Copyright (c) 2013 motiky. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface MOProgressView : UIView
@property (strong,nonatomic) UIImageView *trackView;
@property (strong,nonatomic) UIImageView *progressbgView;
@property (strong,nonatomic) UIView *progressView;
- (id)initWithFrame:(CGRect)frame;
@property (nonatomic, assign) double progress;
@end