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