I’m trying to figure out how to add a spreadsheet/csv database into my coredata. My data has ~1000 rows and 5 columns, and it would be loaded onto the user’s device upon installation. My app should be quite simple in theory, it is basically the 1000 row list, and you can mark the items as “complete”. All the tutorials I am finding are for how the user can add and subtract from the list, but I don’t want the user to be able to alter the list (besides a boolean true/false toggle). I’m also pretty new to Swift so I won’t know any fancy terminology you might use to describe the solution.
So far I have made a coredata model and added the attributes, and from there I don’t know where to go.