AddDeviceInputCell.h 474 B

12345678910111213141516171819202122
  1. //
  2. // AddDeviceInputCell.h
  3. // FunSDKDemo
  4. //
  5. // Created by wujiangbo on 2018/11/12.
  6. // Copyright © 2018年 wujiangbo. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface AddDeviceInputCell : UITableViewCell
  11. @property (nonatomic,strong) UILabel *customTitle;
  12. @property (nonatomic,strong) UITextField *inputTextField;
  13. @property (nonatomic,strong) UIButton *codeBtn; //二维码按钮
  14. @end
  15. NS_ASSUME_NONNULL_END