快速Xcode中的部分和单元格
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了快速Xcode中的部分和单元格相关的知识,希望对你有一定的参考价值。
我是一名新手应用程序开发人员,无法在我的应用程序中显示多个部分和单元格。显示2个部分,第一个部分的3个单元格和第二个部分的2个单元格的最佳方法是什么?
答案
仅处理numberOfRowsInSection-
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == 0{
return 3
}else{
return 2
}
}
func numberOfSections(in tableView: UITableView) -> Int {
return 2
}
另一答案
您将要做类似的事情。只要确保将YourCellIdentifier
和YourCellClass替换为您拥有的任何东西即可。
class TableViewController: UITableViewController {
override func viewDidLoad() {
super.viewDidLoad()
}
override func numberOfSections(in tableView: UITableView) -> Int {
return 2
}
override func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
if section == 0 {
return 3
} else if section == 1 {
return 2
}
return 0
}
override func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(
withIdentifier: "YourCellIdentifier", for: indexPath) as! YourCellClass
// configure your cell here
return cell
}
}
以上是关于快速Xcode中的部分和单元格的主要内容,如果未能解决你的问题,请参考以下文章
如何使用 Swift 在 XCode UI 自动化中选择随机表格视图单元格
Excel中怎样通过vba快速标注哪些单元格的数据发生变化?
Xcode 8.3 和 Swift 3:在 UICollectionView 中的单元格中显示图像,从 URL 获取并存储在 NSMutableArray