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