help with global variables / singleton usage
I am trying to develop a fairly simple app (or so i thought) haha. The idea is that the user clicks a UIButton and through the MessageUI framework, the app opens an email with everything filled out (to, subject, body, etc). the whole point of this email feature is so that the user can share their location (latitude and longitude coordinates) via sending it in a pre-filled out email. I know how to get the lat / long coords in string form, and i know how to open the email with the pre-filled-out stuff EXCEPT for how to insert the lat / long strings into the body portion of the email. it's like, i need to get the variable out of one class, and use it in another (since the lat / long values are used in the CLLocationManager class and the MessageUI framework implements another class in which it prepares the email for sending). All my googling seems to turn up two things: global variables, and singleton usage. Although everyone seems to be hating on the global variables, I only need to use TWO, one for latitude and one for longitude, that i can call whenever i want in the program no matter where i am. any help / suggestions would be immensely appreciated. thanks!
matt