]>
Commit | Line | Data |
---|---|---|
3cb572d2 | 1 | #import <UICaboodle/UCPlatform.h> |
77f175ac | 2 | |
04700693 | 3 | #import <UIKit/UIKit.h> |
77f175ac | 4 | |
1e4922b8 JF |
5 | @protocol HookProtocol |
6 | - (void) didDismissModalViewController; | |
7 | @end | |
8 | ||
9ae52960 | 9 | @interface UCNavigationController : UINavigationController { |
f99f86e2 | 10 | id<HookProtocol> hook_; |
77f175ac | 11 | } |
1e4922b8 | 12 | - (void) setHook:(id<HookProtocol>)hook; |
04700693 JF |
13 | @end |
14 | ||
77f175ac | 15 |