var listData = [(title: "1111",contents: "111111"),(title: "2222",contents: "2222222"),(title: "3333",contents: "333333")]
override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cell:UITableViewCell = UITableViewCell(style: UITableViewCellStyle.Value1, reuseIdentifier:"cell")
let heating = listData[indexPath.row]
cell.textLabel?.text = heating.title
cell.detailTextLabel?.text = heating.contents
cell.selectionStyle = UITableViewCellSelectionStyle.None//无法选择
return cell
}
override func numberOfSectionsInTableView(tableView: UITableView) -> Int {
return 1
}
override func tableView(tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return listData.count
}
网友评论