-
Notifications
You must be signed in to change notification settings - Fork 24.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix Apple TV compile errors #14652
Fix Apple TV compile errors #14652
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -148,8 +148,8 @@ RCT_EXTERN NSString *const RCTUIManagerRootViewKey; | |
- (void)rootViewForReactTag:(NSNumber *)reactTag withCompletion:(void (^)(UIView *view))completion; | ||
|
||
/** | ||
* Finds a view that is tagged with {@param nativeId} as its nativeID prop | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Any reason to change these? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The original is giving a "documentation error" when compiling and running the unit and integration tests. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. |
||
* with the associated {@param rootTag} root tag view hierarchy. Returns the | ||
* Finds a view that is tagged with nativeID as its nativeID prop | ||
* with the associated rootTag root tag view hierarchy. Returns the | ||
* view if found, nil otherwise. | ||
* | ||
* @param nativeID the id reference to native component relative to root view. | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Can you instead hide the methods completely if
!TARGET_OS_TV
? So put them from line 96 to line 124.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.