【发布时间】:2020-03-12 08:05:33
【问题描述】:
如何使用自定义标题按部分排列单元格
我设置了代码以按品牌排列 CartVC 中的单元格(将品牌放在 CartHeaderCell 中)。当数据从 HomeVC 传递到 CartVC 时,我无法让我的代码从我在 CartVC 中创建的代码按品牌将单元格排列成部分。 (当前代码将数据从 HomeVC 传递到 CartVC,而不将单元格排列成部分)
数据传入购物车后,我将如何在 CartVC 中按品牌排列部分
更新:
现在CartViewController Extension 中的代码将单元格排列成部分并按品牌将项目传递到单元格中,但是将所有单元格打乱成随机部分或在单元格中为品牌创建一个新部分,和/或按下 CartBtn 时使模拟器崩溃,或在多个部分中显示相同的项目/单元格
extension HomeController: UITableViewDelegate, UITableViewDataSource {
func numberOfSections(in tableView: UITableView) -> Int {
return 1
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return itemSetup.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
guard let cell = tableView.dequeueReusableCell(withIdentifier: "HomeCell") as? HomeCell else { return UITableViewCell() }
let item = itemSetup[indexPath.row]
cell.configure(withItems: item)
// passes data to the Cart Cells in the CartVC when ATC Btn is pressed in each HomeCell
cell.addActionHandler = { (option: Int) in
print("Option selected = \(option)")
Tray.currentCart.cartItems.append(item)
item.selectedOption = option
}
return cell
}
}
import UIKit
class CartViewController: UIViewController {
var items: Items!
// arranges cells into sections
var tray: [Tray] = []
var sortedBrandsByName: [String] = []
var sections: [[Tray]] = [[]]
@IBOutlet weak var cartTableView: UITableView!
override func viewDidLoad() {
super.viewDidLoad()
// arranges cells into sections
let brandNames = tray.map { $0. titleBrandName }
let uniqueBrandNames = Array(Set(brandNames))
let sortedBrandNames = uniqueBrandNames.sorted()
let sections: [[Tray]] = sortedBrandNames.map { firstBrandNames in
return tray
.filter { $0. titleBrandName == firstBrandNames }
.sorted { $0.cart.brand < $1.cart.brand } // sort them
}
// Do any additional setup after loading the view.
cartTableView.dataSource = self
cartTableView.delegate = self
}
}
extension CartViewController: UITableViewDataSource, UITableViewDelegate {
func numberOfSections(in tableView: UITableView) -> Int {
return Tray.currentCart.cartItems.count
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
//allows data passed from the HomeVC populate the CartCells
return Tray.currentCart.cartItems[section].count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "CartCell", for: indexPath) as! CartCell
// **Active code** that allows data passed from the HomeVC populate the CartCells
let cart = Tray.currentCart.cartItems[indexPath.row]
cell.configure(withItems: cart)
return cell
}
func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let cartHeader = tableView.dequeueReusableCell(withIdentifier: "CartHeaderCell") as! CartHeaderCell
cartHeader.storeName.text = Tray.currentCart.cartItems[section].brand
return cartHeader
}
func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 45
}
}
class CartHeaderCell: UITableViewCell {
@IBOutlet weak var brandName: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
}
class CartCell: UITableViewCell {
@IBOutlet weak var lblMealName: UILabel!
@IBOutlet weak var imageUrl: UIImageView!
@IBOutlet weak var lblSubTotal: UILabel!
@IBOutlet weak var lblQty: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
}
// allows the data to be passed into the cart cells
func configure(withItems items: Items) {
imageUrl.sd_setImage(with: URL(string: items.imageUrl))
lblQty.text = "\(items.count)"
let formatter = NumberFormatter()
formatter.maximumFractionDigits = 2
formatter.numberStyle = .decimal
if items.selectedOption == 1 {
lblSubTotal.text = "$\(formatter.string(for: items.price1 * Float(items.count))!)"
lblMealName.text = "\(items.name) ● \(items.weight1)"
} else if items.selectedOption == 2 {
lblSubTotal.text = "$\(formatter.string(for: items.price2 * Float(items.count))!)"
lblMealName.text = "\(items.name) ● \(items.weight2)"
} else if items.selectedOption == 3 {
lblSubTotal.text = "$\(formatter.string(for: items.price3 * Float(items.count))!)"
lblMealName.text = "\(items.name) ● \(items.weight3)"
}
}
}
// allows the code that is passed to the CartVC when an item is passed from the HomeVC to the CartVC
class Tray {
static let currentCart = Tray()
var cartItems = [Items]()
var cart: Items!
var sectionTitle: String!
}
extension Tray {
var titleBrandName: String {
return String(self.cart.brand[self.cart.brand.startIndex]).uppercased()
}
}
【问题讨论】:
-
节的标题不应实现为一行。实现这一点的更好方法是 - 1. 使用以品牌名称为键的字典而不是数据源的数组,并在数组中使用相应的值。 2. 在
numberOfSections中提供字典的键数。 3.在viewForHeaderInSection配置section header。 -
我刚刚在我的 CartVC 和 Tray 类(标记为“测试代码”)中添加了一些代码,我认为这将使您的解决方案迈出第一步。很抱歉,我整个社区的 wifi 都断了,我终于可以去当地的咖啡店做这件事了
-
我刚刚在
numberOfSections中测试了这个,我放置了return Tray.currentCart.cartItems.count和numberOfRowsInSection我放置了return Tray.currentCart.cartItems[section].count。虽然它在数据传递时显示一个标题并将单元格分成多个部分,但它并不准确,实际上它完全打乱了任何地方的项目。而且该品牌未能在标题中显示我尝试的内容 -
可以贴一下表格数据源吗?
-
我认为 Tray 的模型是错误的,因为从图片中似乎有多个品牌,而您将 titleBrandName 用作单一属性而不是数组。除此之外,能否请您发布项目的模型类,以便我可以仔细看看如何安排项目?
标签: ios arrays swift uitableview uitableviewsectionheader