vote up 0 vote down star
1

Is there a built-in way to get from a UIView to its UIViewController? I know you can get from UIViewController to its UIView via [self view] but I was wondering if there is a reverse reference?

flag

4 Answers

vote up 1 vote down check

There is no built-in way to do it. I did it by adding a IBOutlet on the UIView and connecting these in Interface Builder.

I think you should ask yourself why do you need this, and if the View Controller can't do the job instead. (This was my experience)

link|flag
vote up 0 vote down

I have a similar situation where I have a EAGLView under a UIViewController which again is under a UINavigationController. What I want to do is to navigate to a new view when there's a certain touch event in the opengl view. Since the touch is handled by the EAGLView, how do I tell the navigation view controller on the top to change the view?

link|flag
vote up 0 vote down

Even though this can technically be solved as pgb recommends, IMHO, this is a design flaw. The view should not need to be aware of the controller.

link|flag
I'm just not sure how the viewController can be told that one of its view's is going away and it needs to call one of its viewXXXAppear/viewXXXDisappear methods. – mahboudz Sep 3 at 18:40
This is the idea behind the Observer pattern. The Observed (the View in this case) should not be aware of its Observers directly. The Observer should only receive the callbacks that they're interested in. – Ushox Sep 4 at 9:32
vote up 1 vote down

There is no way.

What I do is pass the UIViewController pointer to the UIView (or an appropriate inheritance). I'm sorry I can't help with the IB approach to the problem because I don't believe in IB.

To answer the first commenter: sometimes you do need to know who called you because it determines what you can do. For example with a database you might have read access only or read/write ...

link|flag

Your Answer

Get an OpenID
or

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