Skip to content
Merged
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
5 changes: 3 additions & 2 deletions ios/utils/UIView+RNSUtility.h
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
#pragma once

#import <Foundation/Foundation.h>
#import <React/RCTSurfaceTouchHandler.h>
#import <UIKit/UIKit.h>
Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why change Foundation import for UIKit import? How is it related to the issue?

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's explained in #3985 ("Suggested fix" section).

Copy link
Copy Markdown
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks. Makes sense.


@class RCTSurfaceTouchHandler;

NS_ASSUME_NONNULL_BEGIN

Expand Down
1 change: 1 addition & 0 deletions ios/utils/UIView+RNSUtility.mm
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#import "UIView+RNSUtility.h"

#import <React/RCTSurfaceTouchHandler.h>
#import <React/RCTSurfaceView.h>
#import "RNSModalScreen.h"

Expand Down
Loading