Git Product home page Git Product logo

Comments (2)

popei69 avatar popei69 commented on July 30, 2024

Hi there,

To add a search in the tableview, there is different ways to implement it. Either you can add the logic in the ViewModel, that will cache the data from service and set the Datasource data based on filtered content from the search. The datasource won't need to change.

The other way is to do the search treatment in the Datasource and let the ViewModel as is. It's very similar.

Here is an example for reference

struct CurrencyViewModel {
     // ...

    var rates: [CurrencyRate]
    
    // MARK: - Search bar delegate 
    
    func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
        guard !searchText.isEmpty else {
            self.dataSource?.data.value.value = self.rates
            return
        }
        
        self.dataSource?.data.value = self.findRatesFor(searchText)
    }

    // ...
}

from templateproject.

kkukkadapua avatar kkukkadapua commented on July 30, 2024

can you share full code.

from templateproject.

Related Issues (4)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.