TextInputView.m 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  1. //
  2. // TextInputView.m
  3. // TheoryNetwork
  4. //
  5. // Created by tederen on 2019/9/27.
  6. // Copyright © 2019 tederen. All rights reserved.
  7. //
  8. #import "TextInputView.h"
  9. #import "XLTextCalculateHelper.h"
  10. #import "NewTopicTextView.h"
  11. @interface TextInputView () <UITextViewDelegate>
  12. @property (nonatomic, strong) UIView *bottomView;
  13. @property (nonatomic, strong) NewTopicTextView *textView;
  14. @property (nonatomic, strong) UILabel *tipLabel;
  15. @property (nonatomic, strong) UILabel *numLabel;
  16. @property (nonatomic, strong) TDButton *enterButton;
  17. @end
  18. @implementation TextInputView
  19. //- (void)dealloc
  20. //{
  21. // [_Notif removeObserver:self name:UIKeyboardDidShowNotification object:nil];
  22. //}
  23. - (instancetype)initWithFrame:(CGRect)frame
  24. {
  25. self = [super initWithFrame:frame];
  26. if (self) {
  27. [self addSubview:self.bottomView];
  28. [self.bottomView addSubview:self.textView];
  29. [self.bottomView addSubview:self.tipLabel];
  30. [self.bottomView addSubview:self.numLabel];
  31. [self.bottomView addSubview:self.enterButton];
  32. [self.bottomView mas_makeConstraints:^(MASConstraintMaker *make) {
  33. make.left.right.mas_equalTo(self);
  34. make.bottom.mas_equalTo(self.mas_safeAreaLayoutGuideBottom);
  35. make.height.mas_offset(150);
  36. }];
  37. UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(dismiss)];
  38. [self addGestureRecognizer:tap];
  39. // [_Notif addObserver:self selector:@selector(keyboardUp:) name:UIKeyboardDidShowNotification object:nil];
  40. [self.textView mas_makeConstraints:^(MASConstraintMaker *make) {
  41. make.top.mas_equalTo(10);
  42. make.left.mas_equalTo(12);
  43. make.right.mas_equalTo(-12);
  44. make.height.mas_equalTo(95);
  45. }];
  46. self.hidden = YES;
  47. }
  48. return self;
  49. }
  50. - (void)setViewText:(NSString *)text
  51. {
  52. [self.textView setText:text];
  53. }
  54. - (void)setPlaceText:(NSString *)placeText;
  55. {
  56. [self.textView setPlaceholder:placeText];
  57. }
  58. - (void)startEditing {
  59. self.hidden = NO;
  60. [self.textView becomeFirstResponder];
  61. self.numLabel.text = [NSString stringWithFormat:@"%lu/1000", (unsigned long)self.textView.text.length];
  62. }
  63. - (void)dismiss
  64. {
  65. self.hidden = YES;
  66. [self.textView resignFirstResponder];
  67. }
  68. - (void)enterButtonAction:(TDButton *)sender {
  69. if (_textView.text.length < 1) {
  70. SHOWERROR(@"请先输入内容")
  71. return;
  72. }
  73. if (self.inputBlock) {
  74. self.inputBlock(_textView.text);
  75. _textView.text = @"";
  76. [self dismiss];
  77. }
  78. }
  79. - (void)startAnimationWithY:(CGFloat)y {
  80. self.bottomView.y = y;
  81. }
  82. #pragma mark - keyboardNotif
  83. //- (void)keyboardUp:(NSNotification *)notification {
  84. //// CGRect frame = [[[notification userInfo] objectForKey:UIKeyboardFrameEndUserInfoKey] CGRectValue];
  85. //// self.bottomView.transform = CGAffineTransformMakeTranslation(0,-30);
  86. //}
  87. #pragma mark - UITextViewDelegate
  88. - (BOOL)textView:(UITextView *)textView shouldChangeTextInRange:(NSRange)range replacementText:(NSString *)text
  89. {
  90. return [XLTextCalculateHelper textView:textView shouldChangeTextInRange:range replacementText:text textLimit:1000];
  91. }
  92. - (void)textViewDidChange:(UITextView *)textView
  93. {
  94. BOOL willContinue = [XLTextCalculateHelper textViewDidChangeWillContinue:textView textLimit:1000];
  95. if (willContinue) {
  96. _numLabel.text = [NSString stringWithFormat:@"%lu/1000", (unsigned long)textView.text.length];
  97. }
  98. }
  99. #pragma mark - setter
  100. - (UIView *)bottomView {
  101. if (!_bottomView) {
  102. _bottomView = [UIView new];
  103. //原代码kGXScreenHeigh-150
  104. // _bottomView.frame = CGRectMake(0, kGXScreenHeigh-150, kGXScreenWidth, 150.f);
  105. _bottomView.backgroundColor = UIColorHex(F5F5F5);
  106. }
  107. return _bottomView;
  108. }
  109. - (NewTopicTextView *)textView {
  110. if (!_textView) {
  111. _textView = [[NewTopicTextView alloc] init];
  112. _textView.delegate = self;
  113. _textView.frame = CGRectMake(12, 10, kGXScreenWidth-12-12, 95.f);
  114. _textView.backgroundColor = [UIColor whiteColor];
  115. _textView.layer.cornerRadius = 5.f;
  116. _textView.font = [UIFont systemFontOfSize:16];
  117. _textView.layer.borderWidth = 1.f;
  118. _textView.layer.borderColor = UIColorHex(#E6E6E6).CGColor;
  119. }
  120. return _textView;
  121. }
  122. - (UILabel *)tipLabel {
  123. if (!_tipLabel) {
  124. _tipLabel = [UILabel new];
  125. _tipLabel.text = @"支持中英文/数字";
  126. _tipLabel.textColor = UIColorHex(666666);
  127. _tipLabel.font = [UIFont systemFontOfSize:14.f];
  128. CGSize tipSize = [_tipLabel sizeThatFits:CGSizeZero];
  129. _tipLabel.frame = CGRectMake(14, 10+95+6, tipSize.width, tipSize.height);
  130. }
  131. return _tipLabel;
  132. }
  133. - (UILabel *)numLabel {
  134. if (!_numLabel) {
  135. _numLabel = [UILabel new];
  136. _numLabel.textAlignment = NSTextAlignmentRight;
  137. _numLabel.text = @"0/1000";
  138. _numLabel.textColor = UIColorHex(666666);
  139. _numLabel.font = [UIFont systemFontOfSize:14.f];
  140. CGSize tipSize = [_tipLabel sizeThatFits:CGSizeZero];
  141. _numLabel.frame = CGRectMake(30, 10+95-2-tipSize.height, kGXScreenWidth-30-30, tipSize.height);
  142. }
  143. return _numLabel;
  144. }
  145. - (TDButton *)enterButton {
  146. if (!_enterButton) {
  147. _enterButton = [[TDButton alloc] init];
  148. _enterButton.frame = CGRectMake(kGXScreenWidth-15-65, 10+95+6, 65, 28);
  149. [_enterButton setTitle:@"发送" forState:UIControlStateNormal];
  150. [_enterButton setTitleColor:[UIColor whiteColor] forState:UIControlStateNormal];
  151. [[_enterButton titleLabel] setFont:[UIFont systemFontOfSize:14.f]];
  152. _enterButton.backgroundColor = UIColorHex(1682DA);
  153. _enterButton.layer.cornerRadius = 2.f;
  154. [_enterButton addTarget:self action:@selector(enterButtonAction:) forControlEvents:UIControlEventTouchUpInside];
  155. }
  156. return _enterButton;
  157. }
  158. - (void)dealloc
  159. {
  160. [self removeAllSubviews];
  161. }
  162. @end