vote up 1 vote down star

I am using Xcode to develop a GUI application. I have a model class and a controller class. I have a NSTextView data member in my controller class. How do I access this variable from the model class?

flag

3 Answers

vote up 0 vote down

Re: the recursive #import problem, what you're looking for is the @class directive. In most cases, all your class interface needs to know about other classes is their names, since all of the actual implementation-specific stuff is in your *.m files. The @class directive therefore provides a way for an interface definition to tell the compiler "hey, when you come across this word, it's a class name, so don't freak out." When you use @class in your interface declaration, you shouldn't need to import that class's header file.

The Objective-C 2.0 Programming Language: Class Interface (Referring to Other Classes).

link|flag
vote up 0 vote down

Hi Mecki, Thanks for the reply. If I try using the Controller object inside my Model method by just including "Controller.h" I get loads of errors. Since the #import thing is recursive. i.e. Controller.h already has Model.h and now if I again import Controller.h in Model.h the compiler just gets confused. Any ideas how can I resolve this to let the controller object get the content status from the model.

link|flag
vote up 10 vote down

First of all, a model class shall not talk to a view class. A TextView is part of the view.

alt text

The controller talks to view classes and view classes provide feedback to the controller. The model classes get updated by the controller and provide feedback to it. The model classes never talk to a view class, they don't even know about the existence of any view classes. So I think you have a basic design problem here. You probably implemented MVC as in this model:

alt text

However this is not the way it is done in Mac OS X, this is not the way Apple does it and this is not the way how the whole Cocoa object structure has been designed! So the answer to your question is: You don't, because you should not.

Aside from the fact, that you have a design flaw, you access it like you access all data members in Objective-C. If it is public, you can access it directly:

MyController * c = [[MyController alloc] init];
// c has a member name textView, let's access it
[c->textView ...];

You should already know, that this is actually very bad programming style. You should not access data members of another object directly. You should actually not even make them public. If you declare them private, the code above will fail (the compiler enforces that you don't do this). The other way is to implement a getter and access it via the getter:

// This goes into the controller

- (NSTextView) textView
{
    return textView;
}

// This is called in the modell

[[c textView] ...];

However, this is also bad design. The model might do whatever it wants with this object and your controller won't see it! Why doesn't you model just tell the controller what it wants to happen?

// In the controller

- (void) notifyContentHasChanged:(NSString *)name
{
    // update the text view here ...
}

// In the modell

[c notifyContentHasChanged:...];

And voila, you have MVC the way Apple wants it to be. The model only notifies the controller of what's going on and the controller updates the view accordingly.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.