|
@@ -83,6 +83,7 @@ class EditExpressAddressTableViewCell: UITableViewCell {
|
|
editTextView.isScrollEnabled = false
|
|
editTextView.isScrollEnabled = false
|
|
editTextView.rx.text.orEmpty.changed.subscribe(onNext: {
|
|
editTextView.rx.text.orEmpty.changed.subscribe(onNext: {
|
|
[weak self] (text) in
|
|
[weak self] (text) in
|
|
|
|
+ self?.editTextView.text = String(text.prefix(150)) as String
|
|
if let editTextViewClosure = self?.editTextViewClosure {
|
|
if let editTextViewClosure = self?.editTextViewClosure {
|
|
editTextViewClosure(self?.editTextView.text ?? "",(self?.indexPath!)!)
|
|
editTextViewClosure(self?.editTextView.text ?? "",(self?.indexPath!)!)
|
|
}
|
|
}
|