Handling one-time immutable data created by app
问题 I'm rewriting my app to incorporate SceneKit to display molecules. About 60% of my code is dedicated to creating these molecules as SCNNode arrays stored in a dictionary. Another 20% creates a String dictionary for text display. Ideally, these dictionaries need only be created once. Currently I'm creating these dictionaries by calls from viewDidLoad in my main (and initial) VC. I then archive the dictionaries: NSKeyedArchiver.archiveRootObject(moleculeDictionary, toFile: filePath) I then read