簡體   English   中英

Swift搜索欄(控制器)內存泄漏

[英]Swift search bar(controller) memory leaks

我有主屏幕,上面有一個按鈕,我在上面搜索VC屏幕。我在它們之間有一個導航控制器,在searchVC中有searchControllersearchBar

問題 :我需要在屏幕出現時激活搜索,但searchBar激活(tap或becomeFirstResponder()會導致內存泄漏圖片如下

我試圖刪除代表,問題消失了,但我需要知道何時按下取消按鈕以截取/關閉到mainVC

代碼 :tableView表示結果,resultView帶有標簽,表示空結果

class SearchViewController: UIViewController,UISearchBarDelegate,UISearchControllerDelegate {
@IBOutlet weak var tableView: UITableView!
@IBOutlet weak var resultView: ResultView!

let searchController = UISearchController(searchResultsController: nil)

var filteredSongs = [SongListModel]()
var songs = SongListModel.fetchSongs()


override func viewDidLoad() {
    super.viewDidLoad()

    searchController.searchResultsUpdater = self
    searchController.obscuresBackgroundDuringPresentation = false
    searchController.searchBar.placeholder = "Search songs"
    if #available(iOS 11.0, *) {
        navigationItem.titleView = searchController.searchBar
        navigationItem.hidesSearchBarWhenScrolling = false
        //            navigationController?.navigationBar.topItem?.searchController = searchController
        //            navigationItem.titleView?.isHidden = true
        searchController.dimsBackgroundDuringPresentation = false
        searchController.hidesNavigationBarDuringPresentation = false
    } else {
        tableView.tableHeaderView = searchController.searchBar
    }
    searchController.searchBar.showsCancelButton = true
    searchController.definesPresentationContext = true

    searchController.searchBar.sizeToFit()
    searchController.delegate = self
    searchController.searchBar.delegate = self

    tableView.keyboardDismissMode = .interactive
}


override func viewDidAppear(_ animated: Bool) {
    super.viewDidAppear(animated)
    delay(0.1) { [unowned self] in
        self.searchController.searchBar.becomeFirstResponder()
    }


}
func delay(_ delay: Double, closure: @escaping ()->()) {
    let when = DispatchTime.now() + delay
    DispatchQueue.main.asyncAfter(deadline: when, execute: closure)
}


func scrollViewWillBeginDragging(_ scrollView: UIScrollView) {
    searchController.searchBar.resignFirstResponder()
}

func searchBarIsEmpty() -> Bool {
    // Returns true if the text is empty or nil
    return searchController.searchBar.text?.isEmpty ?? true
}

func filterContentForSearchText(_ searchText: String, scope: String = "All") {
    filteredSongs = songs.filter({( song : SongListModel) -> Bool in
        return song.musicFileName.lowercased().contains(searchText.lowercased())
    })

    tableView.reloadData()
}

func isFiltering() -> Bool {
    return searchController.isActive && !searchBarIsEmpty()
}

func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
    searchController.searchBar.endEditing(true)
    searchController.searchBar.resignFirstResponder()
    //        searchController.searchBar.delegate = nil
    //        searchController.searchResultsUpdater = nil


    dismiss(animated: true, completion: nil)
}


// MARK: - Navigation

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if segue.identifier == "PlayTilesSegue", let destinationVC = segue.destination as? TilesViewController, let selectedIndex = tableView.indexPathForSelectedRow?.row {
        let song: SongListModel
        if isFiltering() {
            song = filteredSongs[selectedIndex]
        } else {
            song = songs[selectedIndex]
        }
        destinationVC.songFileName = song.musicFileName
        navigationController?.setNavigationBarHidden(true, animated: false)
    }
}
}
extension SearchViewController: UITableViewDelegate,UITableViewDataSource {


func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if isFiltering() {
        resultView.setIsFilteringToShow(filteredItemCount: filteredSongs.count, of: songs.count)
        return filteredSongs.count
    }

    resultView.setNotFiltering()
    return songs.count

}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "filteredCell", for: indexPath) as! FilteredSongCell

    let song: SongListModel

    if isFiltering() {
        song = filteredSongs[indexPath.row]
    } else {
        song = songs[indexPath.row]
    }

    cell.listenSongButton.setBackgroundImage(UIImage(named: "playback"), for: .normal)
    cell.filteredAuthorNameLabel.text = song.authorName
    cell.filteredSongNameLabel.text = song.songName
    cell.playGameButton.setTitle(song.playButton.rawValue, for: .normal)

    return cell
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    performSegue(withIdentifier: "PlayTilesSegue", sender: indexPath)
    tableView.deselectRow(at: indexPath, animated: true)

}



}

extension SearchViewController: UISearchResultsUpdating {
    func updateSearchResults(for searchController: UISearchController) {
        filterContentForSearchText(searchController.searchBar.text!)
    }
}

圖像內存泄漏

您需要設置UISearchController searchBar的委托。 完成此操作后,將正確調用委托方法searchBarCancelButtonClicked:的添加。

在這里是。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM