如何解决在 Swift 中将 TableView 引导到 MVC
现在我像这样获取单元格的所有数据:
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell",for: indexPath) as! TVCellTableViewCell
cell.comeTypeLabel.text = "Writing off"
cell.amountLabelCell.text = String(RealmModel.shared.getSections()[indexPath.section].items[indexPath.row].Amount)
if RealmModel.shared.getSections()[indexPath.section].items[indexPath.row].category != "" {
cell.labelCell.text = RealmModel.shared.getSections()[indexPath.section].items[indexPath.row].category
} else {
cell.labelCell.text = "Income"
cell.comeTypeLabel.text = ""
}
return cell
}
它有效,但我需要将我的项目引导至 MVC。所以,据我所知,我需要在单元类中编写所有逻辑:
class TVCellTableViewCell: UITableViewCell {
@IBOutlet weak var labelCell: UILabel!
@IBOutlet weak var amountLabelCell: UILabel!
@IBOutlet weak var comeTypeLabel: UILabel!
override func awakeFromNib() {
super.awakeFromNib()
labelCell.font = UIFont(name: "Gill Sans SemiBold",size: 20)
labelCell.textColor = UIColor.black
amountLabelCell.font = UIFont(name: "Gill Sans SemiBold",size: 20)
amountLabelCell.textColor = UIColor.black
comeTypeLabel.font = UIFont(name: "Gill Sans SemiBold",size: 18)
comeTypeLabel.textColor = UIColor.gray
}
override func setSelected(_ selected: Bool,animated: Bool) {
super.setSelected(selected,animated: animated)
}
}
但我不知道该怎么做,因为我使用的“indexpathes”和其他词只允许在 tableView 的函数中使用。 有人可以告诉我,如何做正确的事情并导致 MVC,请
解决方法
您的第一个代码段没有任何问题,除了在局部变量中捕获 RealmModel.shared.getSections()[indexPath.section].items[indexPath.row]
可能比执行两次索引更好。
如果您想将代码移动到您的单元格中,您可以将 Realm 对象传递给单元格类中的一个函数。您尚未提供 Realm 模型对象的类型,因此我将使用 Item
。你会有类似的东西:
func tableView(_ tableView: UITableView,cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell",for: indexPath) as! TVCellTableViewCell
let item = RealmModel.shared.getSections()[indexPath.section].items[indexPath.row]
cell.configure(with: item)
return cell
}
class TVCellTableViewCell: UITableViewCell {
//... existing code
func configure(with item:Item) {
if item.category.isEmpty {
self.comeTypeLabel.text = ""
self.labelCell.text = "Income"
} else {
self.comeTypeLabel.text = "Writing off"
self.labelCell.text = item.category
}
self.amountLabelCell.text = String(item.amount)
}
}
请注意,按照惯例,像 amount
这样的属性名称应以小写字母开头,我已在代码中进行了更改。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。