12345678910111213141516171819202122232425 |
- #import <UIKit/UIKit.h>
- @interface AFEUploadView : UIView
- @property (strong, nonatomic) UILabel *label;
- @property (strong, nonatomic) UIView *backgroundView;
- @property (strong, nonatomic) UIImageView *backgroundImageView;
- - (void)beginUploading;
- - (void)stopUploading;
- - (void)setBackgroundImage:(UIImage *)img;
- @end
|