2015-01-30 01:10:49 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-02-04 00:02:36 +00:00
|
|
|
@class RCTEventDispatcher;
|
2015-01-30 01:10:49 +00:00
|
|
|
@class RCTNavItem;
|
|
|
|
@class RCTWrapperViewController;
|
|
|
|
|
|
|
|
@protocol RCTWrapperViewControllerNavigationListener <NSObject>
|
|
|
|
|
|
|
|
- (void)wrapperViewController:(RCTWrapperViewController *)wrapperViewController
|
|
|
|
didMoveToNavigationController:(UINavigationController *)navigationController;
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface RCTWrapperViewController : UIViewController
|
|
|
|
|
2015-02-04 00:02:36 +00:00
|
|
|
- (instancetype)initWithContentView:(UIView *)contentView eventDispatcher:(RCTEventDispatcher *)eventDispatcher;
|
|
|
|
- (instancetype)initWithNavItem:(RCTNavItem *)navItem eventDispatcher:(RCTEventDispatcher *)eventDispatcher;
|
2015-01-30 01:10:49 +00:00
|
|
|
|
|
|
|
@property (nonatomic, readwrite, weak) id<RCTWrapperViewControllerNavigationListener> navigationListener;
|
|
|
|
@property (nonatomic, strong, readwrite) RCTNavItem *navItem;
|
|
|
|
|
|
|
|
@end
|