23 lines
488 B
C
23 lines
488 B
C
|
|
//
|
||
|
|
// FirstViewController.h
|
||
|
|
// Talk
|
||
|
|
//
|
||
|
|
// Created by xuzs on 22/10/11.
|
||
|
|
// Copyright (c) 2022年 xuzs. All rights reserved.
|
||
|
|
//
|
||
|
|
|
||
|
|
#import <UIKit/UIKit.h>
|
||
|
|
#import "BaseViewController.h"
|
||
|
|
#import "FaceUpload.h"
|
||
|
|
|
||
|
|
@interface FaceSubPage : BaseViewController<UIImagePickerControllerDelegate>
|
||
|
|
@property(nonatomic) UILabel *hit;
|
||
|
|
@property(nonatomic) UIButton *button;
|
||
|
|
@property(nonatomic) UIImageView *imgView;
|
||
|
|
@property(nonatomic) NSString *no;
|
||
|
|
|
||
|
|
@property(nonatomic) FaceUpload *parent;
|
||
|
|
|
||
|
|
@end
|
||
|
|
|