Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

473
Vistas
RxSwift Swift - Select/Deselect multiple rows in tableView

I can select rows in tableView.rx but I'm wonder how to get array of final selection. I mean the result array of selecting some rows and then deselecting some rows.

Here's my code:

 Observable.zip(tableView.rx.modelSelected(Country.self), tableView.rx.itemSelected).subscribe(onNext: { (selectedCountry, indexPath) in
            print("2 selected Country is \(selectedCountry) and indexPath is \(indexPath.row)")
            self.selectedCountries.append(selectedCountry)

I want also see selected rows as marked.

I appreciate for your helping. thanks

over 4 years ago · Santiago Trujillo
2 Respuestas
Responde la pregunta

0

First you have to use this:

tableView.allowsMultipleSelection = true

Then you could use these to do what ever you want:

  let selectedItems = tableView.rx.modelSelected(Country.self).subscribe { item in
        print("selected: \(item)")
        print("selected rows: \(self.tableView.indexPathsForSelectedRows)")
  }
  let deselectedItems = tableView.rx.modelDeselected(Country.self).subscribe { item in
        print("deselected: \(item)")
  }
over 4 years ago · Santiago Trujillo Denunciar

0

This will produce an Observable array of indexPaths:

    tableView.allowsMultipleSelection = true
    
    let selectedItems = Observable.merge(
        tableView.rx.itemSelected.asObservable(),
        tableView.rx.itemDeselected.asObservable()
    )
        .flatMap { [tableView] _ in
            Observable.just(tableView.indexPathsForSelectedRows ?? [])
        }
over 4 years ago · Santiago Trujillo Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda