如何使用textLabel.text将内容显示到单元格到Swift中的TableView对象

时间:2015-05-31 00:49:44

标签: ios uitableview swift

我想在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
}

1 个答案:

答案 0 :(得分:0)

ViewController未配置为委托。