Search as you type Swift

后端 未结 3 706
眼角桃花
眼角桃花 2021-02-09 17:18

I try to implement Search as you type written in Swift. It works already but I need some tuning. I send with each letter typed in

func searchBar(searchBar: UISe         


        
3条回答
  •  甜味超标
    2021-02-09 18:16

    The problem you're having is that you're debouncing the findUser function before calling it every time. Your debouncing function sets up the initial timer and delay, but since you're calling it each time, the initial timer is always "now". You should debounce only once so the closure can maintain its captured last-executed time.

    You want to only call debounce one time and store it as a property, like so:

    class MySearchController: ... {
        lazy var debouncedFindUser = debounce(
            Static.searchDebounceInterval,
            Static.q,
            self.findUser)
    
        ...
    
        func searchBar(searchBar: UISearchBar, textDidChange searchText: String) {
            debouncedFindUser()
        }
    
        func findUser() {
            ...
        }
    }
    

提交回复
热议问题