Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ios/RCTWebViewBridge.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/

#import "RCTView.h"
#import <React/RCTView.h>

@class RCTWebViewBridge;

Expand Down
14 changes: 7 additions & 7 deletions ios/RCTWebViewBridge.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

#import <UIKit/UIKit.h>

#import "RCTAutoInsetsProtocol.h"
#import "RCTConvert.h"
#import "RCTEventDispatcher.h"
#import "RCTLog.h"
#import "RCTUtils.h"
#import "RCTView.h"
#import "UIView+React.h"
#import <React/RCTAutoInsetsProtocol.h>
#import <React/RCTConvert.h>
#import <React/RCTEventDispatcher.h>
#import <React/RCTLog.h>
#import <React/RCTUtils.h>
#import <React/RCTView.h>
#import <React/UIView+React.h>
#import <objc/runtime.h>

//This is a very elegent way of defining multiline string in objective-c.
Expand Down
2 changes: 1 addition & 1 deletion ios/RCTWebViewBridgeManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* of patent rights can be found in the PATENTS file in the same directory.
*/

#import "RCTViewManager.h"
#import <React/RCTViewManager.h>

@interface RCTWebViewBridgeManager : RCTViewManager

Expand Down
6 changes: 3 additions & 3 deletions ios/RCTWebViewBridgeManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,10 @@

#import "RCTWebViewBridgeManager.h"

#import "RCTBridge.h"
#import "RCTUIManager.h"
#import <React/RCTBridge.h>
#import <React/RCTUIManager.h>
#import "RCTWebViewBridge.h"
#import "UIView+React.h"
#import <React/UIView+React.h>

@interface RCTWebViewBridgeManager () <RCTWebViewBridgeDelegate>

Expand Down