To practice my programming and keep track of my progress I'm building an app for myself. I've created a tableview and for each section and independent cells for each requirement. Now Xcode is upset because each prototype cell doesn't have an identifier.
I've looked at the Swift docs and gone through Youtube vids on the topic but I still don't understand what reuse identifiers are or what they are used for, let alone how it would help in my case.

If looks like you're creating a new cell for each value (“Array functions”, “Cocoapods”, etc.). If using cell prototypes, you wouldn't generally do that. You would generally have a single prototype cell, say, one with a reuse identifier of
SkillCell, which would have a center aligned label. So, you would not see all of these different skills in your storyboard, but rather your table view’s data source would provide the values, instantiating your reusedSkillCellcell, passing it the skill name:So your storyboard might look like
And then you'd populate it programmatically:
Yielding:
Now, if you want to add all of these skills in IB, then fine, you can do that, but you wouldn't generally use prototype cells (each with their own reuse identifier), but rather static table view cells.