我想在textLabel.text属性中添加一个简单的字符串,然后在此示例中的单元格中显示它。
我添加了部分的数量,该部分中的行数,现在尝试向单元格显示数据。
import UIKit
class ViewController: UIViewController, UITableViewDataSource {
// number of sections in table view
func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
// number of rows in section
func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return 5
}
// returns the content of each row
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
// an object to represent each cell
var cell = UITableViewCell()
// configure
cell.textLabel?.text? = "Hello" - this is where i run into a problem
//cell.textLabel?.text = "Hello" - this is where i run into a problem
return cell
}
答案 0 :(得分:0)
ViewController未配置为委托。