newsmemory-ios-sdk/Frameworks/RNScreens.xcframework/ios-arm64/Headers/RNSScreenComponentView.h

24 lines
545 B
C
Raw Normal View History

2024-05-02 15:08:24 +00:00
#import <UIKit/UIKit.h>
#import <React/RCTViewComponentView.h>
#import "RNSScreenController.h"
NS_ASSUME_NONNULL_BEGIN
@interface RNSScreenComponentView : RCTViewComponentView
@property (weak, nonatomic) UIView *reactSuperview;
@property (weak, nonatomic) UIView *config;
@property (nonatomic, retain) RNSScreenController *controller;
- (void)notifyWillAppear;
- (void)notifyWillDisappear;
- (void)notifyAppear;
- (void)notifyDisappear;
- (void)updateBounds;
- (void)notifyDismissedWithCount:(int)dismissCount;
@end
NS_ASSUME_NONNULL_END