How do you get and set a class property across multiple functions in Objective-C?
- by editor
Following up on this question about sharing objects between classes, I now need to figure out how to share the objects across various functions in a class.
First, the setup: In my App Delegate I load menu information from JSON into a NSMutableDictionary and message that through to a view controller using a function called initWithData. I need to…