在 TableView 中创建的 7 个单元格之后添加部分 - Swift

Add section after 7 cell created in TableView - Swift

我有 2 个数组,一个包含节,另一个包含用于填充 TableView 的单元格的元素。

问题是:是否可以在 7 个单元格后创建多个带有标题的部分?

例如,数组包含 14 个元素,sections 数组包含 2 个元素。我希望一开始会出现 "Section 1" 然后是前 7 个元素,然后是 "Section 2" 然后是其余元素。

谢谢!

 import UIKit

    class ChallengesViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {

        @IBOutlet weak var tableView: UITableView!

        var titleArray = [""]
        var weekSection = ["1","2"]

        override func viewDidLoad() {
            super.viewDidLoad()


>      let url = URL(string:"https://website.com/file.txt")!
>         URLCache.shared.removeAllCachedResponses()
>         let task = URLSession.shared.dataTask(with:url) { (data, response, error) in
>             if error != nil {
>                 print(error!)
>             }
>             else {
>                 if let textFile = String(data: data!, encoding: .utf8) {
>                     DispatchQueue.main.async {
>                     self.titleArray = textFile.components(separatedBy: "\n")
>                     self.tableView.reloadData()
>                     print(self.titleArray)
>                     }
>                 }
>             }
>         }
>         task.resume()

        }

         func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
            return titleArray.count
        }

        func numberOfSectionsInTableView(tableView: UITableView) -> Int {
            return weekSection.count
        }

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

            let cell = tableView.dequeueReusableCell(withIdentifier: "challengeCell", for: indexPath) as! ChallengeTableViewCell
            cell.labelTitle.text = titleArray[indexPath.row]

            return cell
        }

        func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {

            switch (section) {
            case 0:
                return "Case 0"
            case 1:
                return "Case 1"
            default:
                return "Default"
            }
        }

问题编辑后,这是我认为最好的答案之一

extension Array {
 func chunked(into size: Int) -> [[Element]] {
     return stride(from: 0, to: count, by: size).map {
         Array(self[[=10=] ..< Swift.min([=10=] + size, count)])
     }
 }
}

用法:

@IBOutlet weak var tableView: UITableView!

    var titleArray: [[String]] = [[]]
    var sectionsCount: Int = 0

    override func viewDidLoad() {
        super.viewDidLoad()

        let url = URL(string:"https://website.com/file.txt")!
        URLCache.shared.removeAllCachedResponses()
        let task = URLSession.shared.dataTask(with:url) { (data, response, error) in
            if error != nil {
                print(error!)
            }
            else {
                if let textFile = String(data: data!, encoding: .utf8) {
                    DispatchQueue.main.async {
                        let myArray = textFile.components(separatedBy: "\n")
                        self.sectionsCount = myArray.chunked(into: 7).count
                        self.tableView.reloadData()
                        print(self.titleArray)
                    }
                }
            }
        }
        task.resume()

    }

    func numberOfSectionsInTableView(tableView: UITableView) -> Int {
        return sectionsCount
    }

    func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
        return titleArray[section].count
    }

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

        let cell = tableView.dequeueReusableCell(withIdentifier: "challengeCell", for: indexPath) as! ChallengeTableViewCell

        let sectionArray = titleArray[indexPath.section]
        cell.labelTitle.text = sectionArray[indexPath.row]

        return cell
    }

像这样更新 numberOfRowsInSectioncellForRowAt 方法

func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String? {
    return "Case \(section)"
}
func numberOfSections(in tableView: UITableView) -> Int {
    let lastSection = titleArray.count % 7 == 0 ? 0 : 1
    return (titleArray.count/7) + lastSection
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    let count = titleArray.count - (7*section)
    return min(7,count)
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCell(withIdentifier: "challengeCell", for: indexPath) as! ChallengeTableViewCell
    let rowIndex = (indexPath.section*7)+indexPath.row
    cell.labelTitle.text = titleArray[rowIndex]
    return cell
}