开发者

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

开发者 https://www.devze.com 2023-02-27 07:37 出处:网络
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.

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]

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号