STTableTextCell.h 904 B

123456789101112131415161718192021222324252627
  1. //
  2. // STTableTextCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/19.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @class STTableTextCell;
  11. typedef NS_ENUM(NSUInteger, STTableTextType) {
  12. STTableTextTypeDefault = 0,
  13. STTableTextTypeText = 1, // 文本
  14. STTableTextTypeNum = 2, // 数字
  15. };
  16. @protocol STTableTextCellDelegate <NSObject>
  17. @optional
  18. -(void)showSTTableTextCell:(STTableTextCell *)stTableTextCell;
  19. @end
  20. @interface STTableTextCell : STTableBaseCell <UITextFieldDelegate>
  21. @property (weak, nonatomic) IBOutlet UIImageView *leftImgView;
  22. @property (weak, nonatomic) IBOutlet UITextField *textField;
  23. @property (weak, nonatomic) IBOutlet UIView *separatorView;
  24. @property (weak, nonatomic)id<STTableTextCellDelegate> delegate;
  25. @end