Skip to content

Instantly share code, notes, and snippets.

@paigeshin
Created June 28, 2022 12:26
Show Gist options
  • Select an option

  • Save paigeshin/9d2d32d48816e124296ab289403dff36 to your computer and use it in GitHub Desktop.

Select an option

Save paigeshin/9d2d32d48816e124296ab289403dff36 to your computer and use it in GitHub Desktop.
// Register Cell
tableView.register(UINib(nibName: "MyCell", bundle: nil), forCellReuseIdentifier: "MyCell")
// Dequeue Cell
let cell = tableView.dequeueReusableCell(withIdentifier: "MyCell") as! MyCell
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment