diff --git a/React/DevSupport/RCTDevLoadingView.h b/React/DevSupport/RCTDevLoadingView.h index caf6f2525..e8fed7ffe 100644 --- a/React/DevSupport/RCTDevLoadingView.h +++ b/React/DevSupport/RCTDevLoadingView.h @@ -14,6 +14,8 @@ @interface RCTDevLoadingView : NSObject + (void)setEnabled:(BOOL)enabled; +- (void)showWithURL:(NSURL *)URL; - (void)updateProgress:(RCTLoadingProgress *)progress; +- (void)hide; @end diff --git a/React/DevSupport/RCTDevLoadingView.m b/React/DevSupport/RCTDevLoadingView.m index bb27e0504..6259b952f 100644 --- a/React/DevSupport/RCTDevLoadingView.m +++ b/React/DevSupport/RCTDevLoadingView.m @@ -161,7 +161,9 @@ RCT_EXPORT_METHOD(hide) + (NSString *)moduleName { return nil; } + (void)setEnabled:(BOOL)enabled { } -- (void)updateProgress:(RCTLoadingProgress *)progress {} +- (void)showWithURL:(NSURL *)URL { } +- (void)updateProgress:(RCTLoadingProgress *)progress { } +- (void)hide { } @end