2016-04-18 86 views
1

我正在嘗試將搜索欄添加到由7個單元格組成的簡單表格視圖,這些單元格包含名稱和每個名稱的小描述。TableView上的搜索欄不起作用

由於這裏的圖像:

enter image description here

我取得了迅速的文件中的類稱爲Business,即有兩個屬性:名稱和德。

下面是視圖控制器代碼:

class FirstViewController: UIViewController, UITableViewDataSource, UITableViewDelegate { 
@IBOutlet weak var TableView: UITableView! 
var B = [Business]() //candies 
var filteredNames = [Business]() 

let searchController = UISearchController(searchResultsController: nil) 

func filterContentForSearchText(searchText: String, scope: String = "All") { 
    filteredNames = B.filter { Bu in 
     return Bu.Name.lowercaseString.containsString(searchText.lowercaseString) 
    } 

    TableView.reloadData() 
} 


override func viewDidLoad() { 
    super.viewDidLoad() 


    B = [ 
     Business(Name:"Mariah", Des:"I'm Here to help"), 
     Business(Name:"Nada", Des:"Hi"), 
     Business(Name:"Atheer", Des:"Hello"), 
     Business(Name:"Lojian", Des:"I can Help you"), 
     Business(Name:"Nadya", Des:"Hayat"), 
     Business(Name:"Omnia", Des:"Yahoo"), 
     Business(Name:"Eman", Des:"I have amazing stuff"), 
     Business(Name:"Amani", Des:"Yess") 
    ] 

    searchController.searchResultsUpdater = self 
    searchController.dimsBackgroundDuringPresentation = false 
    definesPresentationContext = true 
    TableView.tableHeaderView = searchController.searchBar 

} 

override func didReceiveMemoryWarning() { 
    super.didReceiveMemoryWarning() 
} 

func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int { 
    if searchController.active && searchController.searchBar.text != "" { 
     return filteredNames.count 
    } 
    return B.count 
} 

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 

    let cell = self.TableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! CellTableViewCell 

    cell.NameLabel.text = B[indexPath.row].Name 
    cell.DescriptionLabel.text = B[indexPath.row].Des 

    let Bu: Business 

    if searchController.active && searchController.searchBar.text != "" { 
     Bu = filteredNames[indexPath.row] 
    } else { 
     Bu = B[indexPath.row] 
    } 
    cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator 
    return cell 
} 


    } 

extension FirstViewController: UISearchResultsUpdating { 
func updateSearchResultsForSearchController(searchController: 
(UISearchController) { 
filterContentForSearchText(searchController.searchBar.text!) 
} 
} 

我跟着這個教程做的: https://www.raywenderlich.com/113772/uisearchcontroller-tutorial

我不知道whay當我試圖在模擬器搜索的結果總是第一個單元格:Mariah

代碼有什麼問題?

+0

在你的代碼中,如果你從過濾結果或正常情況檢查條件之前,你已經設置了兩個標籤,dasdom答案應該主要適用於你 – HardikDG

回答

0

您不使用搜索結果填充單元格。更換你cellForRowAtIndexPath這個:

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell { 

    let cell = self.TableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as! CellTableViewCell 

    let Bu: Business 

    if searchController.active && searchController.searchBar.text != "" { 
     Bu = filteredNames[indexPath.row] 
    } else { 
     Bu = B[indexPath.row] 
    } 

    cell.NameLabel.text = Bu.Name 
    cell.DescriptionLabel.text = Bu.Des 

    cell.accessoryType = UITableViewCellAccessoryType.DisclosureIndicator 
    return cell 
} 

而且,不要使用大寫首字母的特性。

+0

我怎樣才能不使用大寫字母?在哪行代碼? – Mariah

+0

'@IBOutlet weak var tableView:UITableView!'和'var b = [Business]()'。 – dasdom

+0

但爲什麼我不應該使用大寫字母作爲屬性? – Mariah