gpt4 book ai didi

ios - swift3 中的表格 View 单元格

转载 作者:搜寻专家 更新时间:2023-11-01 06:36:14 27 4
gpt4 key购买 nike

因为我是 iOS swift3.0 的初学者

我正在尝试在 swift3 中使用 xib 单元格创建简单的 TableView 。我已经阅读了一些教程,但我继续找到正确的示例。有人可以帮助我吗。

请找到我下面的代码

class Myclass: UIViewController, UITableViewDelegate, UITableViewDataSource {

@IBOutlet weak var tabelviewoutlet: UITableView!
let animals: [String] = ["Horse", "Cow", "Camel", "Sheep", "Goat"]
let cellIdentifier = "Cell"


override func viewDidLoad() {
super.viewDidLoad()
}

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

func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell:UITableViewCell = self.tableView.dequeueReusableCell(withIdentifier: "td")! as UITableViewCel
}

最佳答案

请找到代码并告诉我。

import UIKit
class ViewController: UIViewController,UITableViewDataSource{


@IBOutlet weak var tabelviewoutlet: UITableView!
let animals: [String] = ["Horse", "Cow", "Camel", "Sheep", "Goat"]
let cellIdentifier = "Cell"


override func viewDidLoad() {
super.viewDidLoad()

tabelviewoutlet.dataSource = self

tabelviewoutlet.register(UINib(nibName: "aTableViewCell", bundle: nil), forCellReuseIdentifier: "Cell")


}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int
{
return animals.count
}

func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "Cell", for: indexPath) as! aTableViewCell
//cell.albl?.text = self.animals[indexPath.row]
cell.albl.text=self.animals[indexPath.row]

return cell
}
}

关于ios - swift3 中的表格 View 单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41296914/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com