Как перейти к другому виду из результатов поиска, отображаемых в виде таблицы? - PullRequest
0 голосов
/ 05 июня 2018

Следующий код - мой код viewController.Слова из файла json отображаются в табличном представлении по щелчку слова, которое переносится на другую страницу, где отображаются элементы, связанные с этим словом.Однако я не могу перейти на эту страницу, когда результаты поиска отображаются в виде таблицы.

class ViewController: UIViewController, UITableViewDelegate, UITableViewDataSource, UISearchResultsUpdating{

@IBOutlet weak var mainTableView: UITableView!

var words = [wordStats]()
var filteredArray = [wordStats]()
var searchController = UISearchController()
var resultsController = UITableViewController()


override func viewDidLoad() {
    super.viewDidLoad()
    // Do any additional setup after loading the view, typically from a nib.
    getJson {
        self.mainTableView.reloadData()
    }

    mainTableView.delegate = self
    mainTableView.dataSource = self

    searchController = UISearchController(searchResultsController: resultsController)
    mainTableView.tableHeaderView = searchController.searchBar
    searchController.searchResultsUpdater = self

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

}

func updateSearchResults(for searchController: UISearchController) {
    filteredArray = words.filter({ (words: wordStats) -> Bool in
        if words.word.contains(searchController.searchBar.text!){
            return true
        }else{
            return false
        }
    })
    resultsController.tableView.reloadData()
}

func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    if tableView == resultsController.tableView{
        return filteredArray.count
    }else{
        return words.count
    }
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = UITableViewCell(style: .default, reuseIdentifier: nil)
    if tableView == resultsController.tableView{
        cell.textLabel?.text = filteredArray[indexPath.row].word.capitalized
    }else{
        cell.textLabel?.text = words[indexPath.row].word.capitalized
    }
    //cell.textLabel?.text = words[indexPath.row].word.capitalized
    return cell
}

func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
    performSegue(withIdentifier: "wordDetails", sender: self)
}

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if let destination = segue.destination as? HeroViewController{
            destination.word = words[(mainTableView.indexPathForSelectedRow?.row)!]
        }
}

func getJson(completed: @escaping () -> ()){
    let path = Bundle.main.path(forResource: "week_14", ofType: "json")
    let url = URL(fileURLWithPath: path!)
    let data = try! Data(contentsOf: url)
            do {
                self.words = try JSONDecoder().decode([wordStats].self, from: data)
                DispatchQueue.main.async{
                    completed()
                }
            }catch{
                print("JSON error")
            }
}

}

Первоначально после получения данных из файла JSON данные отображаются в mainTableView, но после поиска, когда я нажимаю на элемент приложения, происходит сбой.Может кто-нибудь помочь мне, пожалуйста?

struct wordStats:Decodable{
let word: String
let synonym: String
let meaning: String
let example: String
let video: String

}

это слово Stats

Ответы [ 2 ]

0 голосов
/ 06 июня 2018

Это то, что сработало в конце

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
    if let destination = segue.destination as? HeroViewController {
        if let indexPath = mainTableView.indexPathForSelectedRow{
            if isFiltering(){
                destination.word = filteredArray[indexPath.row]
            }else{
                destination.word = words[indexPath.row]
            }
        }
    }
}
0 голосов
/ 05 июня 2018

Опубликовать журнал сбоя.Мое предположение, основанное на том, что у нас мало, состоит в том, что вы в prepareForSegue вылетаете из-за этого:

destination.word = words[(mainTableView.indexPathForSelectedRow?.row)!]

Вероятно, это ошибка индекса при использовании отфильтрованных результатов.Это может решить эту проблему:

override func prepare(for segue: UIStoryboardSegue, sender: Any?) {
        if let destination = segue.destination as? HeroViewController{

            if tableView == resultsController.tableView {
                destination.word = filteredArray[(mainTableView.indexPathForSelectedRow?.row)!]
            } else {
                destination.word = words[(mainTableView.indexPathForSelectedRow?.row)!]
            }
        }
}
...