swift - 如何更新 TableView

标签 swift tableview searchbar

我使用了搜索栏。它没有更新 TableView 。

struct ApiResults:Decodable {
    let resultCount: Int
    let results: [Music]
}

struct Music:Decodable {
    let trackName: String?
    let artistName: String?
    let artworkUrl60: String?
}

class ItunesDataViewController: UIViewController, UITableViewDataSource, UITableViewDelegate, UISearchBarDelegate {

    @IBOutlet weak var searchBar: UISearchBar!
    @IBOutlet weak var tableView: UITableView!
    var musicArray:[Music] = []
    var mArray:[Music] = []
    var filteredData:[Music] = []
    var isSearching = false

    override func viewDidLoad() {
        super.viewDidLoad()

        self.tableView.dataSource = self
        self.tableView.delegate = self

        self.searchBar.delegate = self
        searchBar.placeholder = "search"

    }
     func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String)
    {

        print("\n\nsearchText : \(searchText)\n\n")
        Search(searchTerm: "\(searchText)")

        if searchBar.text == nil || searchBar.text == ""
        {
            isSearching = false
            view.endEditing(true)
            self.tableView.reloadData()
        }
        else
        {
            isSearching = true
            filteredData = mArray.filter{$0.artistName == searchText}
            self.tableView.reloadData()
        }

    }
    func Search(searchTerm: String)
    {

        guard let url = URL(string: "https://itunes.apple.com/search?term=\(searchTerm)&attribute=actorTerm&attribute=languageTerm&attribute=allArtistTerm&attribute=tvEpisodeTerm&attribute=shortFilmTerm&attribute=directorTerm&attribute=releaseYearTerm&attribute=titleTerm&attribute=featureFilmTerm&attribute=ratingIndex&attribute=keywordsTerm&attribute=descriptionTerm&attribute=authorTerm&attribute=genreIndex&attribute=mixTerm&attribute=allTrackTerm&attribute=artistTerm&attribute=composerTerm&attribute=tvSeasonTerm&attribute=producerTerm&attribute=ratingTerm&attribute=songTerm&attribute=movieArtistTerm&attribute=showTerm&attribute=movieTerm&attribute=albumTerm") else {return}
        URLSession.shared.dataTask(with: url){(data, response, error) in
            guard let data = data else {return}

            do
            {
                let apiressults = try JSONDecoder().decode(ApiResults.self, from: data)

                for item in apiressults.results
                {
                    if let track_Name = item.trackName, let artist_Name = item.artistName, let artwork_Url60 = item.artworkUrl60
                    {
                        let musics = Music(trackName: track_Name, artistName: artist_Name, artworkUrl60: artwork_Url60)
                        self.musicArray.append(musics)
                        print(musics.artistName!,"-", musics.trackName!)
                    }
                }                
                DispatchQueue.main.async
                    {
                        self.tableView.reloadData()
                }
            }
            catch let jsonError
            {
                print("Error:", jsonError)
            }
            }.resume()
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        if isSearching
        {
            return filteredData.count
        }
        else
        {
            return mArray.count
        }
    }

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

        if isSearching
        {
            cell.lblDesc?.text = filteredData[indexPath.row].artistName
            cell.lblSongDesc?.text = filteredData[indexPath.row].trackName
            let imgString = filteredData[indexPath.row].artworkUrl60!

            let imgUrl:URL = URL(string: imgString)!
            DispatchQueue.global(qos: .userInitiated).async {

                let imageData:NSData = NSData(contentsOf: imgUrl)!

                DispatchQueue.main.async {
                    let image = UIImage(data: imageData as Data)
                    cell.imgArt?.image = image
                }
            }
        }
        else
        {
            cell.lblDesc?.text = mArray[indexPath.row].artistName
            cell.lblSongDesc?.text = mArray[indexPath.row].trackName
            let imgString = mArray[indexPath.row].artworkUrl60!

            let imgUrl:URL = URL(string: imgString)!
            DispatchQueue.global(qos: .userInitiated).async {

                let imageData:NSData = NSData(contentsOf: imgUrl)!

                DispatchQueue.main.async {
                    let image = UIImage(data: imageData as Data)
                    cell.imgArt?.image = image
                }
            }
        }

        return cell
    }
}

最佳答案

请清理你的代码 😉:你有两个不同的数组 mArraymusicArray

您正在 Search 中填充 musicArray,但 mArray 用作数据源。

为什么要从 Music 项创建新的 Music 项?您可以将代码缩减为

let apiressults = try JSONDecoder().decode(ApiResults.self, from: data)
self.mArray = apiressults.results
DispatchQueue.main.async {
   self.tableView.reloadData()
}

关于swift - 如何更新 TableView ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52935997/

相关文章:

swift - 快速更改颜色搜索栏结果图标

ios - 以编程方式添加一些约束时出现 NSGenericException

ios - 如何改变 CIDetector 方向?

ios - 如何在不显示确认屏幕的情况下直接发送消息?

c# - 我想从 SQLite DB 获取所有信息

ios - Objective C 在代码中设置自动行高

ios - 无法在调度队列 swift 3 的主线程中更新 UI

ios - Tableview 标题与单元格重叠

xcode - swift : Searchbar localizedCaseInsensitiveContainsString is not working or error

ios - 完全隐藏搜索栏