I have created an NSMutableArray in the implementation of my class loginController. The mutable array contains a set of strings. I want to pass the mutable array with its objects to other classes within my cocoa-project. What is the best way to pass the array?
|
|
The most basic case is your login controller simply handing a snapshot of the array to the other controller. In this case, your login controller will need to have references to instances of the other classes, and it will set some property of those instances to the array. Remember to declare the properties with the If you want the other controllers to be able to modify the array, don't let them have your mutable array—that's an invitation to hard-to-find bugs. Instead, you'll need to implement one property on the login controller, instead of one property on each of the other controllers. The login controller's property should have at least a getter and setter (which you can Once you have this property, the other controllers should access the property in a KVO-compliant way. If you implement the specific accessors, they can just use those. Otherwise, they'll need to send Next comes the actual KVO part. You'll want the other controllers to know when one of them (or the login controller) changes the property. Have each controller (except the login controller) add itself as an observer of the property of the login controller. Remember to have them remove themselves in their In order for the right notifications to get posted, everything needs to use either accessors or BTW, it sounds like you may have way too many controllers. See if you can't move some of your logic into model objects instead. That drastically simplifies your code, as Cocoa is designed to work with a model layer. Being controller-heavy is fighting the framework, which makes more work for you. *By “fancy”, I mean doing things other than or in addition to the normal behavior of a given accessor method. For example, |
||
|
|
|
|
short answer that may not be the best practice:
|
||
|
|
|
|
the question is a good one, but not complete... do you just need to pass an array of strings or does the class you are passing to need to modify the array? In general, it's not a problem to simply pass around an NSMutableArray*, however you need to be careful, because you are just passing a pointer ( so if you retain it somewhere, you need to be aware that the owner or some other class may modify the array ). generally spoken you would want to use NSMutableArray to dynamically build up an array of objects and when you need to share them, then make a non-mutable copy and pass that along.
|K< |
||
|
|
|
|
I think the pattern that's best for your situation is delegation. Your
Then, in your
Then, when you've actually got something to communicate to the delegate, you would write this:
The object that should receive the login IDs would incorporate the
And you would implement the This way, instead of your |
||
|
|
