Developer/iOS

[iOS] 상위 뷰 컨트롤러 가져오는 법. super viewcontroller

블로blow 2011. 5. 31. 08:13
728x90

ViewController *vc;

vc = (ViewController*)[btn.
superview nextResponder];

vc = (ViewController*)[view.
superview nextResponder]; 

nextResponder

Returns the receiver'€™s next responder, or nil if it has none.

- (UIResponder *)nextResponder
Return Value

The next object in the responder chain to be presented with an event for handling.

Discussion

The UIResponder class does not store or set the next responder automatically, instead returning nil by default. Subclasses must override this method to set the next responder. UIViewimplements this method by returning the UIViewController object that manages it (if it has one) or its superview (if it doesn’t); UIViewController implements the method by returning its view’s superview; UIWindow returns the application object, and UIApplication returns nil.

Availability
  • Available in iOS 2.0 and later.
Declared In
UIResponder.h 

728x90