使用搜索栏iOS swift3中的条目加载单元格时,图像无法正确显示

时间:2017-06-28 05:02:37

标签: ios uitableview swift3 uisearchbar uisearchbardelegate

这里我试图在搜索开始时显示过滤后的数据结果。搜索名称有效但我不明白如何通过搜索显示图像。我认为错误在过滤器中搜索内容我是iOS新手,我们将不胜感激任何帮助

 proxy: {

 "/api/2/": {
        target: 'http://localhost:8080',
        changeOrigin: true,
        secure: false,
        logLevel: 'debug',
        agent: process.env.HTTP_PROXY ? new HttpsProxyAgent(process.env.HTTP_PROXY) : undefined,
        headers: {
          "x-api-token": "122",
          "Authorization": "Basic 1122222="
        }
      },

}

2 个答案:

答案 0 :(得分:1)

不要为图像,数据和appoid保留单独的数组。创建struct对象并对struct对象进行搜索。 试试这个,

import UIKit
   import Foundation
   import SDWebImage

   struct TableObject {
    var name: String = ""
    var image: String = ""
    var appoId: String = ""
   }

   class TableViewController: UITableViewController,UISearchBarDelegate,UISearchResultsUpdating {
    //var sections = ["recent","old"]
    var tableDataSource: [TableObject] = []

    var filteredArray: [TableObject] = []
    let searchController = UISearchController(searchResultsController:nil)


    override func viewDidLoad() {
        super.viewDidLoad()
        getData()
        self.tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cells")
        searchController.searchResultsUpdater = self
        searchController.dimsBackgroundDuringPresentation=false
        definesPresentationContext=true
        self.tableView.tableHeaderView = searchController.searchBar
        // Do any additional setup after loading the view, typically from a nib.
        tableView.reloadData()
    }

    override func didReceiveMemoryWarning() {
        super.didReceiveMemoryWarning()
        // Dispose of any resources that can be recreated.
    }
    //
    //    override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    //
    //        return sections[section]
    //
    //    }
    //
    //    override func numberOfSections(in tableView: UITableView) -> Int {
    //        // #warning Incomplete implementation, return the number of sections
    //
    //        return sections.count
    //
    //    }



    override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        if searchController.isActive && !searchController.searchBar.isEqual("") {
            return self.filteredArray.count
        }
        else{
            return tableDataSource.count
        }
    }

    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        //here cells is the identifier name of prototype cell

        let cell = self.tableView.dequeueReusableCell(withIdentifier: "cells", for: indexPath)

        if searchController.isActive && !searchController.searchBar.isEqual(""){
            cell.textLabel?.text = filteredArray[indexPath.row].name
            //cell.imageView?.image = filteredImage[indexPath.row]
            //            print("filteredimage")
            //            print(filteredImage)
            //            print(indexPath.row)
            cell.imageView?.sd_setImage(with: URL(string: filteredArray[indexPath.row].image), placeholderImage: UIImage(named: "PA"))
        }
        else{
            cell.textLabel?.text = self.TableData[indexPath.row]
            //cell.imageView?.image = self.TableImage[indexPath.row]
            cell.imageView?.sd_setImage(with: URL(string: tableDataSource[indexPath.row].image), placeholderImage: UIImage(named: "PA"))
            //cell.= appoid[indexPath.row]

        }


        return cell
    }





    func filterContentForSearch(searchString:String){
        self.filteredArray=self.tableDataSource.filter(){nil != $0.name.range(of:searchString)}

        self.tableView.reloadData()
    }


    func updateSearchResults(for searchController: UISearchController) {
        self.filterContentForSearch(searchString: searchController.searchBar.text!)
    }




    func getData() {


        var request = URLRequest(url: URL(string: "*********")!)
        //request.httpMethod = "POST"
        //let postString = "date="+x
        //request.httpBody = postString.data(using: .utf8)
        //print(request.httpBody)
        let task = URLSession.shared.dataTask(with: request) { data, response, error in
            guard let data = data, error == nil else {                                                 // check for fundamental networking error
                print("error=\(error)")
                return
            }

            if let httpStatus = response as? HTTPURLResponse, httpStatus.statusCode != 200 {           // check for http errors
                print("statusCode should be 200, but is \(httpStatus.statusCode)")
                print("response = \(response)")
            }

            let responseString = String(data: data, encoding: .utf8)
            print("responseString = \(responseString)")

            do{

                let json = try JSONSerialization.jsonObject(with: data, options:.allowFragments) as! [String:AnyObject]

                if let stations = json["result"] as? [[String: AnyObject]] {
                    for station in stations {
                        let name = station["patient_name"] as! String
                        //self.login = login_value
                        let profile_pic = station["image"] as! String
                        let status = station["status"] as! String

                        let appo_id = station["id"] as! String
                        //    let appo_id = station["appointment_id"] as! String
                        //let status = station["status"] as! String
                        //let appo_time = station["appointment_time"] as! String
                        //let appo_duration = station["time_duration"] as! String
                        //let reason = station["reason"] as! String
                        print(name,status)
                        let tableData = TableObject(name: name, image: profile_pic, appoId: appo_id)
                        self.tableDataSource.append(tableData)

                    }
                    //print(self.items)
                    //self.do_table_refresh();
                    self.tableView.reloadData()

                }

            }catch {
                print("Error with Json: \(error)")
            }

        }
        task.resume()
    }

   }

答案 1 :(得分:1)

请遵循以下

不要制作单独的数组:

 let arrData = [Any]() // these combined array

获取数据时更改

if let stations = json["result"] as? [[String: AnyObject]] {
                        for station in stations {
                            arrData.append(station)
                        }

对TableViewDatasource的更改

override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            if searchController.isActive && !searchController.searchBar.isEqual("") {
                return self.filteredArray.count
            }
            else{
                return arrData.count
            }
        }
    override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
        //here cells is the identifier name of prototype cell

        let cell = self.tableView.dequeueReusableCell(withIdentifier: "cells", for: indexPath)

               if searchController.isActive && !searchController.searchBar.isEqual(""){
                     let dictObjects = filteredArray[indexPath.row] as [String: AnyObject]
                  cell.textLabel?.text = dictObjects["name"]
              cell.imageView?.sd_setImage(with: URL(string:  dictObjects["image"]), placeholderImage: UIImage(named: "PA"))
        }
        else{
        let dictObjects = arrData[indexPath.row] as [String: AnyObject]

            cell.textLabel?.text = dictObjects["name"]
            cell.imageView?.sd_setImage(with: URL(string:  dictObjects["image"]), placeholderImage: UIImage(named: "PA"))
        //cell.= appoid[indexPath.row]

        }

    return cell
}

使用此

进行过滤
let namePredicate = NSPredicate(format: "name like %@","yourstring");
filteredArray = arrData.filter { namePredicate.evaluate(with: $0) };
print("names = ,\(filteredArray)");