AFEUploadView.h 460 B

12345678910111213141516171819202122232425
  1. //
  2. // AFEUploadView.h
  3. // FaceEyePrint
  4. //
  5. // Created by yukun.tyk on 12/14/15.
  6. // Copyright © 2015 DTF. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. //
  10. @interface AFEUploadView : UIView
  11. @property (strong, nonatomic) UILabel *label;
  12. @property (strong, nonatomic) UIView *backgroundView;
  13. @property (strong, nonatomic) UIImageView *backgroundImageView;
  14. - (void)beginUploading;
  15. - (void)stopUploading;
  16. - (void)setBackgroundImage:(UIImage *)img;
  17. @end