Biology, asked by Bharatshivani1403, 1 year ago

Uitableview cell type value 1 and value 2

Answers

Answered by sanu83
0
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

let cell = tableView.dequeueReusableCellWithIdentifier("Cell") as! UITableViewCell

(cell as! TableViewCell).usernameLabel.text = friendsArray[indexPath.row] as String


return cell
}
Similar questions