简体   繁体   中英

How or where should I store object instances that I require globally within my iOS app?

I'm building an iOS application. Most of the application requires access to a persistent object. This object is instantiated when the app loads via the Application Delegate.

The problem I have is that numerous View Controllers that need to access this object.

What is the best way and best practice to create global objects that can be access from anywhere in the application?

Examples would be appreciated. Many thanks.

You might want to look at the Singleton pattern. The linked article provides a pretty good description of it including how to implement one in Cocoa.

If the Singleton doesn't make sense in your context, and you still need the Global reference to your variable, you could just put a reference to it in your AppDelegate . ( Not recommended )

It can be accessed from within your application anytime using:

[UIApplication sharedApplication] delegate]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM