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