Skip to content

Instantly share code, notes, and snippets.

@zontan
Created September 9, 2020 17:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zontan/6509d4281f0790b9e7bd86728c19f352 to your computer and use it in GitHub Desktop.
Save zontan/6509d4281f0790b9e7bd86728c19f352 to your computer and use it in GitHub Desktop.
func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
return resultsArray.count
}
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "userCell", for: indexPath)
if let userCell = cell as? UserTableViewCell {
let userData = resultsArray[indexPath.row]
userCell.displayName.text = userData["displayname"]
}
return cell
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment