2015-03-23 20:28:42 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
#import "RCTBridge.h"
|
|
|
|
#import "RCTBridgeModule.h"
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
@interface RCTRedBox : NSObject <RCTBridgeModule>
|
2015-02-20 04:10:52 +00:00
|
|
|
|
2015-07-14 23:11:42 +00:00
|
|
|
- (void)showError:(NSError *)error;
|
2015-02-20 04:10:52 +00:00
|
|
|
- (void)showErrorMessage:(NSString *)message;
|
|
|
|
- (void)showErrorMessage:(NSString *)message withDetails:(NSString *)details;
|
|
|
|
- (void)showErrorMessage:(NSString *)message withStack:(NSArray *)stack;
|
|
|
|
- (void)updateErrorMessage:(NSString *)message withStack:(NSArray *)stack;
|
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
- (void)dismiss;
|
2015-06-09 21:51:25 +00:00
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
@end
|
2015-03-14 01:32:38 +00:00
|
|
|
|
2015-08-19 12:27:43 +00:00
|
|
|
/**
|
|
|
|
* This category makes the red box instance available via the RCTBridge, which
|
|
|
|
* is useful for any class that needs to access the red box or error log.
|
|
|
|
*/
|
|
|
|
@interface RCTBridge (RCTRedBox)
|
|
|
|
|
|
|
|
@property (nonatomic, readonly) RCTRedBox *redBox;
|
2015-02-20 04:10:52 +00:00
|
|
|
|
|
|
|
@end
|