| 123456789101112131415 |
- //
- // TableWithVerificationCodeCell.h
- // model
- //
- // Created by JuYi on 2018/7/16.
- // Copyright © 2018年 Mine. All rights reserved.
- // 带获取验证码的cell
- #import <UIKit/UIKit.h>
- @interface TableWithVerificationCodeCell : UITableViewCell
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UITextField *contentTF;
- @property (nonatomic, strong) UIButton *codeBtn;
- @end
|