|
@@ -69,7 +69,7 @@ static const NSInteger btnTag = 20000;
|
|
|
make.top.greaterThanOrEqualTo(self.textBgView).offset(0).priority(1000);
|
|
|
make.right.equalTo(self.rightSendBtn.mas_left).offset(-8);
|
|
|
}];
|
|
|
- [self btnClick:self.leftBtn];
|
|
|
+ [self btnClick:self.leftBtn];//
|
|
|
dispatch_after(dispatch_time(DISPATCH_TIME_NOW, (int64_t)(0.1 * NSEC_PER_SEC)), dispatch_get_main_queue(), ^{
|
|
|
[self btnClick:self.leftBtn];
|
|
|
});
|
|
@@ -157,6 +157,7 @@ static const NSInteger btnTag = 20000;
|
|
|
_nextGrowingTextView.layer.cornerRadius = 4.0;
|
|
|
_nextGrowingTextView.maxNumberOfLines = 6;
|
|
|
_nextGrowingTextView.hidden = YES;
|
|
|
+ _nextGrowingTextView.textView.keyboardType = UIKeyboardTypeASCIICapable;
|
|
|
[self.textBgView addSubview:_nextGrowingTextView];
|
|
|
}
|
|
|
return _nextGrowingTextView;
|