UITableView 没有在 Swift 3 中使用 Index 正确显示数据
Posted
技术标签:
【中文标题】UITableView 没有在 Swift 3 中使用 Index 正确显示数据【英文标题】:UITableView not displaying data correctly with Index in Swift 3 【发布时间】:2017-04-03 09:46:35 【问题描述】:我的应用项目中有一个 UITableView,它从数组中提取数据。这些数据也必须被索引。但由于某种原因,数据没有显示在适当的部分,即 A、B 等。我似乎看不出有什么问题。到目前为止我的数据是:
import Foundation
import UIKit
class uniVC: UITableViewController
let university = ["Allcat University", "Allday University", "Bejnamin University", "Cat University"]
var universitySections = [String]()
var wordsDict = [String:[String]]()
let wordIndexTitles = ["a","b","c","d","e","f","g","h","i","j","k","l","m","n","o","p","q","r","s","t","u","v","w","x","y","z"]
func generateWordsDict()
for word in university
let key = "\(word[word.startIndex])"
let lower = key.lowercased()
if var wordValues = wordsDict[lower]
wordValues.append(word)
wordsDict[lower] = wordValues
else
wordsDict[lower] = [word]
universitySections = [String](wordsDict.keys)
universitySections = universitySections.sorted()
override func viewDidLoad()
super.viewDidLoad()
generateWordsDict()
override func didReceiveMemoryWarning()
super.didReceiveMemoryWarning()
//Dispose
// Mark table view data source
override func numberOfSections(in tableView: UITableView) -> Int
return universitySections.count
override func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
return universitySections[section]
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
let wordKey = universitySections[section]
if let wordValues = wordsDict[wordKey]
return wordValues.count
return 0
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
let wordKey = universitySections[indexPath.section]
if wordsDict[wordKey.lowercased()] != nil
cell.textLabel?.text = university[indexPath.row]
return cell
override func sectionIndexTitles(for tableView: UITableView) -> [String]?
return wordIndexTitles
override func tableView(_ tableView: UITableView, sectionForSectionIndexTitle title: String, at index: Int) -> Int
guard let index = universitySections.index(of: title) else
return -1
return index
关于这个有什么想法吗?
【问题讨论】:
我不明白你的问题。当前输出是多少,预期输出是多少?不要让人们猜测问题是什么。此外,您是否使用断点和调试器来单步执行代码以查找逻辑错误? 我不是让人们猜测问题是什么,请阅读问题 - 数据未显示在适当的部分,即 a 未显示在等... 屏幕截图添加到帮助 @sole 仅仅因为你认为你已经提供了足够的信息,并不意味着你真的有:) 我不得不在操场上运行它来看看有什么问题.当您说“数据未显示在适当的部分中”时,这可能意味着很多事情 - 解释出了什么问题的更清晰的方法是“以 'a' 开头的大学出现在每个部分中,而我预期的部分是” b' 包含以 b' 开头的大学。使用堆栈溢出的一个副作用是我了解到提出问题真的很难:| 【参考方案1】:一切都很好,除了:
if wordsDict[wordKey.lowercased()] != nil
cell.textLabel?.text = university[indexPath.row]
我认为你犯了一个错误。让我们改为:
if let wordValues = wordsDict[wordKey]
cell.textLabel?.text = wordValues[indexPath.row]
这是结果:
【讨论】:
【参考方案2】:你的问题在这里:
if wordsDict[wordKey.lowercased()] != nil
cell.textLabel?.text = university[indexPath.row]
无论您在哪个部分(即 a、b 或 c),您都要求选择第一所大学,而不是 该部分中的第一所大学。您可能打算查看wordsDict
,而不是university
。
尝试用这个替换它:
if let wordValues = wordsDict[wordKey.lowercased()]
cell.textLabel?.text = wordValues[indexPath.row]
【讨论】:
以上是关于UITableView 没有在 Swift 3 中使用 Index 正确显示数据的主要内容,如果未能解决你的问题,请参考以下文章
Firebase 与 Swift 3.0 UITableView
来自 url 的 swift 3 json 无法获取单元格 uitableview
Swift 3 - UITableView 在 UIScrollView 中被切断
Swift 在 UITableView 中异步加载图像 - 顶部单元格没有图片