mirror of
https://github.com/status-im/react-native.git
synced 2025-01-21 06:49:39 +00:00
00f0ebccdf
- [ReactNative] Fix indentation | Ben Alpert - [ReactKit] Bring back ability to jump to syntax error from redbox | Alex Kotliarskyi - [ReactKit] Update pthread.h import path to be (more?) correct | Ben Alpert - Simplified event handling | Nick Lockwood - [ReactNative] more readme - xcode error help | Spencer Ahrens
25 lines
846 B
Objective-C
25 lines
846 B
Objective-C
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@class RCTEventDispatcher;
|
|
@class RCTNavItem;
|
|
@class RCTWrapperViewController;
|
|
|
|
@protocol RCTWrapperViewControllerNavigationListener <NSObject>
|
|
|
|
- (void)wrapperViewController:(RCTWrapperViewController *)wrapperViewController
|
|
didMoveToNavigationController:(UINavigationController *)navigationController;
|
|
|
|
@end
|
|
|
|
@interface RCTWrapperViewController : UIViewController
|
|
|
|
- (instancetype)initWithContentView:(UIView *)contentView eventDispatcher:(RCTEventDispatcher *)eventDispatcher;
|
|
- (instancetype)initWithNavItem:(RCTNavItem *)navItem eventDispatcher:(RCTEventDispatcher *)eventDispatcher;
|
|
|
|
@property (nonatomic, readwrite, weak) id<RCTWrapperViewControllerNavigationListener> navigationListener;
|
|
@property (nonatomic, strong, readwrite) RCTNavItem *navItem;
|
|
|
|
@end
|