STTableTextViewCell.h 742 B

1234567891011121314151617181920212223
  1. //
  2. // STTableTextViewCell.h
  3. // BuguLive
  4. //
  5. // Created by 岳克奎 on 17/4/18.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "STTableBaseCell.h"
  10. @class STTableTextViewCell;
  11. #define MAX_LIMIT_NUMS 100
  12. @protocol STTableTextViewCellDeleagte <NSObject>
  13. @optional
  14. -(void)showSTTableTextViewCell:(STTableTextViewCell*)stTableTextViewCell;
  15. @end
  16. @interface STTableTextViewCell : STTableBaseCell <UITextViewDelegate>
  17. @property (weak, nonatomic) IBOutlet UITextView *textView; //
  18. @property (weak, nonatomic) IBOutlet UILabel *showWordsNumLab; // 显示可输入字数
  19. @property (weak, nonatomic) IBOutlet UIView *separatorView;
  20. @property(weak,nonatomic)id<STTableTextViewCellDeleagte>delegate;
  21. @end