Created
October 31, 2018 11:37
-
-
Save samdods/808fdf9fd7874f36d854d987055a5e3a to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
guard let cell = tableView.dequeueReusableCell(withIdentifier: "ProductCell", for: indexPath) as? ProductCell else { | |
// unlikely to happen, but better safe than sorry! | |
assertionFailure("Unable to dequeue cell") | |
return UITableViewCell() | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment