繁体   English   中英

使用Swift按字母顺序对TableView单元格进行排序

[英]Sort TableView Cells Alphabetically using Swift

我正在使用Firebase将数据加载到tableview单元中,这是我的数据结构。

struct postStruct {
let title : String!
let author : String!
let bookRefCode : String!
let imageDownloadString : String!
let status : String!
let reserved : String!
let category : String!
let dueDate : String!
}

现在,我需要按字母顺序对包含数据的表格单元格进行排序,标题的顶部是A,底部是Z。

class DirectoryTableView: UITableViewController {

var posts = [postStruct]()

override func viewDidLoad() {

let databaseRef = Database.database().reference()

databaseRef.child("Books").queryOrderedByKey().observe(.childAdded, with: {
    snapshot in

    var snapshotValue = snapshot.value as? NSDictionary
    let title = snapshotValue!["title"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let author = snapshotValue!["author"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let bookRefCode = snapshotValue!["bookRefCode"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let status = snapshotValue!["status"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let reserved = snapshotValue!["reserved"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let category = snapshotValue!["category"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let dueDate = snapshotValue!["dueDate"] as? String
    snapshotValue = snapshot.value as? NSDictionary


    self.posts.insert(postStruct(title: title, author: author, bookRefCode: bookRefCode, status: status, reserved: reserved, category: category, dueDate: dueDate) , at: 0)
    self.tableView.reloadData()


})



 override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {

return posts.count

 }




  override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

var cell = tableView.dequeueReusableCell(withIdentifier: "cell")

let databaseRef = Database.database().reference()

let label1 = cell?.viewWithTag(1) as! UILabel
label1.text = posts[indexPath.row].title

let label2 = cell?.viewWithTag(2) as! UILabel
label2.text = posts[indexPath.row].author

let label3 = cell?.viewWithTag(3) as! UILabel
label3.text = posts[indexPath.row].bookRefCode

let label4 = cell?.viewWithTag(4) as! UILabel
label4.text = posts[indexPath.row].status

let label5 = cell?.viewWithTag(5) as! UILabel
label5.text = posts[indexPath.row].category

let image1 = cell?.viewWithTag(6) as! UILabel
image1.text = posts[indexPath.row].imageDownloadString

let label6 = cell?.viewWithTag(7) as! UILabel
label6.text = posts[indexPath.row].reserved

let label9 = cell?.viewWithTag(9) as! UILabel
label9.text = posts[indexPath.row].dueDate

return cell!

}

任何想法,请帮忙! 我试图用不同的方法对它们进行排序,但是我很困惑!

正如我在评论中所说,您无需对单元格进行排序,而需要对datarsource数组进行排序,为此,请在您的 self.posts.insert(postStruct(title: title, author: author, bookRefCode: bookRefCode, status: status, reserved: reserved, category: category, dueDate: dueDate) , at: 0) 下方 添加 self.posts.sort(by: {$0.title < $1.title}) 这行 self.posts.insert(postStruct(title: title, author: author, bookRefCode: bookRefCode, status: status, reserved: reserved, category: category, dueDate: dueDate) , at: 0)添加此行,您的posts数组将保持有序,并且每次添加其他帖子时,都会再次订购

您的viewDidLoad完整代码以及排序

override func viewDidLoad() {

let databaseRef = Database.database().reference()

databaseRef.child("Books").queryOrderedByKey().observe(.childAdded, with: {
    snapshot in

    var snapshotValue = snapshot.value as? NSDictionary
    let title = snapshotValue!["title"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let author = snapshotValue!["author"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let bookRefCode = snapshotValue!["bookRefCode"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let status = snapshotValue!["status"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let reserved = snapshotValue!["reserved"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let category = snapshotValue!["category"] as? String
    snapshotValue = snapshot.value as? NSDictionary

    let dueDate = snapshotValue!["dueDate"] as? String
    snapshotValue = snapshot.value as? NSDictionary


    self.posts.insert(postStruct(title: title, author: author, bookRefCode: bookRefCode, status: status, reserved: reserved, category: category, dueDate: dueDate) , at: 0)
    self.posts.sort(by: {$0.title < $1.title})
    self.tableView.reloadData()


})

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM