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?
|
|
||||
|
|
|
Since this has been the accepted answer for a long time, I feel I need to rectify it with a better answer. Some comments on the need:
An example of how to implement it follows:
The view interfaces with its delegate (as My original answer follows: I don't recommend this, neither the rest of the answers where direct access to the view controller is achieved There is no built-in way to do it. While you can get around it by adding a |
|||||||||||||||
|
|
Using the example posted by Brock, I modified it so that its a category of UIView instead UIViewController and made it recursive so that any subview can (hopefully) find the parent UIViewController.
To use this code, add it into an new class file (I named mine "UIKitCategories") and remove the class data... copy the @interface into the header, and the @implementation into the .m file. Then in your project, #import "UIKitCategories.h" and use within the UIView code:
|
|||||||||
|
|
Add this to your project and you're ready to roll.
Now |
|||||||||||||||
|
|
Combining several already given answers, I'm shipping on it as well with my implementation:
The category is part of my ARC-enabled static library that I ship on every application I create. It's been tested several times and I didn't find any problems or leaks. P.S.: You don't need to use a category like I did if the concerned view is a subclass of yours. In the latter case, just put the method in your subclass and you're good to go. |
|||||||||||
|
|
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. |
|||||||
|
|
I would suggest a more lightweight approach for traversing the complete responder chain without having to add a category on UIView:
|
|||
|
|
|
While these answers are technically correct, including Ushox, I think the approved way is to implement a new protocol or re-use an existing one. A protocol insulates the observer from the observed, sort of like putting a mail slot in between them. In effect, that is what Gabriel does via the pushViewController method invocation; the view "knows" that it is proper protocol to politely ask your navigationController to push a view, since the viewController conforms to the navigationController protocol. While you can create your own protocol, just using Gabriel's example and re-using the UINavigationController protocol is just fine. |
|||
|
|
|
Don't forget that you can get access to the root view controller for the window that the view is a subview of. From there, if you are e.g. using a navigation view controller and want to push a new view onto it:
You will need to set up the rootViewController property of the window properly first, however. Do this when you first create the controller e.g. in your app delegate:
|
|||
|
|
I don't think it's "bad" idea to find out who is the view controller for some cases. What could be a bad idea is to save the reference to this controller as it could change just as superviews change. In my case I have a getter that traverses the responder chain. //.h
//.m
|
|||
|
|
|
My solution would probably be considered kind of bogus but I had a similar situation as mayoneez (I wanted to switch views in response to a gesture in an EAGLView), and I got the EAGL's view controller this way:
|
|||||||||||
|
|
This doesn't answer the question directly, but rather makes an assumption about the intent of the question. If you have a view and in that view you need to call a method on another object, like say the view controller, you can use the NSNotificationCenter instead. First create your notification string in a header file
In your view call postNotificationName:
Then in your view controller you add an observer. I do this in viewDidLoad
Now (also in the same view controller) implement your method copyString: as depicted in the @selector above.
I'm not saying this is the right way to do this, it just seems cleaner than running up the first responder chain. I used this code to implement a UIMenuController on a UITableView and pass the event back up to the UIViewController so I can do something with the data. |
|||
|
|
|
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 ... |
|||||||||||||
|
|
I think there is a case when the observed needs to inform the observer. I see a similar problem where the UIView in a UIViewController is responding to a situation and it needs to first tell its parent view controller to hide the back button and then upon completion tell the parent view controller that it needs to pop itself off the stack. I have been trying this with delegates with no success. I don't understand why this should be a bad idea? |
||||
|
|
|
Another easy way is to have your own view class and add a property of the view controller in the view class. Usually the view controller creates the view and that is where the controller can set itself to the property. Basically it is instead of searching around (with a bit of hacking) for the controller, having the controller to set itself to the view - this is simple but makes sense because it is the controller that "controls" the view. |
|||
|
|
|
To Phil's answer: In line: |
|||
|
|


