UserInputCell.h 474 B

123456789101112131415161718192021
  1. //
  2. // UserInputCell.h
  3. // XWorld
  4. //
  5. // Created by dinglin on 2017/1/12.
  6. // Copyright © 2017年 xiongmaitech. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface UserInputCell : UITableViewCell
  10. @property (nonatomic) UILabel *customTitle;
  11. @property (nonatomic) UITextField *inputTextField;
  12. @property (nonatomic) UIImageView *iconImageView;
  13. @property (nonatomic, copy) void (^toggleBtnClickedAction)(UIButton *);
  14. @property (nonatomic) UIButton *toggleBtn;
  15. @end