blob: 340db4d42a1b86831da31f10a7ca1cd2208f98b1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#import <UICaboodle/UCPlatform.h>
#import <UIKit/UIKit.h>
@protocol HookProtocol
- (void) didDismissModalViewController;
@end
@interface UCNavigationController : UINavigationController {
_transient id<HookProtocol> hook_;
}
- (void) setHook:(id<HookProtocol>)hook;
@end
|