【发布时间】:2015-09-16 19:17:45
【问题描述】:
我在 字符串数组中有国家代码和国家名称。 我只是过滤了国家名称并显示在过滤后的 tableView 中。但是,在显示时,我无法从原始 tableview 中获取相应的国家代码。国家/地区代码未过滤。请帮助我。如何过滤 tableView 单元格中的多个字段。
我的代码:
var countries = [String]()
for countryCodes : AnyObject in NSLocale.ISOCountryCodes() {
let dictionary : NSDictionary = NSDictionary(object:countryCodes, forKey:NSLocaleCountryCode)
let identifier : NSString? = NSLocale.localeIdentifierFromComponents(dictionary)
if ((identifier) != nil) {
let country : NSString = NSLocale.currentLocale().displayNameForKey(NSLocaleIdentifier, value: identifier!)!
countries.append(country)
println(countries)
}
}
println(countries)
var country_codes = [String]()
country_codes = NSLocale.ISOCountryCodes() as [String]
println(country_codes) //Working Successfully.
//SEARCH BAR WHILE TYPING TEXT
func searchBar(searchBar: UISearchBar, textDidChange searchText: String) {
if(countElements(searchBar.text) >= 3)
{
searchActive = true
filtered = countries.filter({ (text) -> Bool in
let tmp: NSString = text
let range = tmp.rangeOfString(searchText, options: NSStringCompareOptions.CaseInsensitiveSearch)
return range.location != NSNotFound
})
//I filtered only one fields. So, Filtered results are working fine, but, I am having one more fields in tableview cell. That is displaying different datas. I dont know how to filtered multiple fields.
if(filtered.count == 0 || countElements(searchBar.text) == 0)
{
searchActive = false
self.countryTableView.reloadData()
}
else
{
searchActive = true
self.countryTableView.reloadData()
}
}
else
{
searchActive = false
self.countryTableView.reloadData()
}
}
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell = countryTableView.dequeueReusableCellWithIdentifier("country", forIndexPath: indexPath) as country_tblCell
//println("Cell for ROws \(searchActive)")
if(searchActive)
{
if(filtered.count == 0 || countElements(searchBar.text) == 0)
{
searchActive = false
self.countryTableView.reloadData()
}
else
{
println("First Index \(indexPath.row)")
cell.country_Label.text = filtered[indexPath.row]
cell.countryCodeLabel.text = countryCodes[indexPath.row] //Here need to display filtered datas for Country code.
println("Second Index \(indexPath.row)")
}
}
else
{
println("Normal First Index \(indexPath.row)")
cell.selectionStyle = .None
cell.country_Label.text = countries[indexPath.row]
cell.countryCodeLabel.text = countryCodes[indexPath.row]
cell.layer.borderColor = validateBorderColor.CGColor
cell.layer.borderWidth = 1
println("Normal Second Index \(indexPath.row)")
}
return cell
}
我的输出
【问题讨论】:
标签: swift uitableview uisearchbar