| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- //
- // YRRnBridge.h
- // shiku_im
- //
- // Created by liujl on 2019/8/14.
- //
- #import <Foundation/Foundation.h>
- @protocol YRRnBridgeDelegate <NSObject>
- @required
- /**
- 返回上一页
- */
- -(void)reactNativeControllerShouldBack;
- /**
- 是否禁用侧滑手势,防止手势冲突
- */
- -(void)reactNativeControllerGestureEnabled:(BOOL)enabled;
- /**
- 是否应该旋转屏幕为全屏
- */
- -(void)reactNativeControllerShouldAutorotateParams:(NSDictionary *)params;
- @optional
- @end
- NS_ASSUME_NONNULL_BEGIN
- @interface YRRnBridge : NSObject
- @property(weak,nonatomic)id<YRRnBridgeDelegate> delegate;
- @end
- NS_ASSUME_NONNULL_END
|