洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

25 lines
460 B

7 months ago
  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