в случае динамической таблицы с textfield , при вводе текста и байндинга обратно в ресурс таблица будет перерисовываться, из-за чего будет сбрасываться клавиатура , можно конечно отправлять текст по сбросу клавиатуры , но есть ли какой то более лаконичный способ ?
// Create an Observable for the text field's text let textFieldText = textField.rx.text.orEmpty // Use debounce to specify a delay for updating the data textFieldText.debounce(0.5, scheduler: MainScheduler.instance) .subscribe(onNext: { text in // Update the data with the new text self.updateData(with: text) }) .disposed(by: disposeBag) // Bind the data to the table view data.asObservable() .bind(to: tableView.rx.items) { tableView, index, item in // Configure the cell with the data let cell = tableView.dequeueReusableCell(
Обсуждают сегодня