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?
|
|
There is no built-in way to do it. I did it by adding a 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) |
||
|
|
|
|
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? |
||
|
|
|
|
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. |
||||
|
|
|
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 ... |
||
|
|
