FaceColloectView.h 744 B

123456789101112131415161718192021222324252627282930313233343536
  1. //
  2. // FaceColloectView.h
  3. // LN_School
  4. //
  5. // Created by apple on 2017/9/12.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FaceColloectVC.h"
  10. @interface FaceColloectView : UIView
  11. @property (nonatomic, strong) UIImageView *faceImg;
  12. /*btn.tag 1拍照 2上传 3申请删除 4审核中*/
  13. @property (nonatomic, strong) UIButton *clickBtn;
  14. @property (nonatomic, strong) UILabel *titleLabel;
  15. @property (nonatomic, strong) FaceColloectVC *superVC;
  16. //type 1正脸 2左边侧脸 3右边侧脸 4抬头照 5低头照
  17. @property (nonatomic, copy) NSString *type;
  18. @property (nonatomic, copy) NSString *stuID;
  19. @property (nonatomic, strong) NSDictionary *dataDic;
  20. @end