写一个oc的tableview
时间: 2023-03-14 18:18:14 浏览: 254
我可以给你一个简单的UITableView示例:class TableViewController: UIViewController, UITableViewDelegate, UITableViewDataSource {//MARK:- IBOutlets
@IBOutlet weak var tableView: UITableView!//MARK:- Properties
var dataArray = [String]()//MARK:- Lifecycle
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
tableView.register(UITableViewCell.self, forCellReuseIdentifier: "cell")
}//MARK:- TableView Delegate & DataSource
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return dataArray.count
} func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "cell", for: indexPath)
cell.textLabel?.text = dataArray[indexPath.row]
return cell
}
}
阅读全文