forked from facebook/react-native
-
Notifications
You must be signed in to change notification settings - Fork 166
Expand file tree
/
Copy pathRCTScrollContentView.m
More file actions
57 lines (45 loc) · 1.46 KB
/
RCTScrollContentView.m
File metadata and controls
57 lines (45 loc) · 1.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/*
* Copyright (c) Meta Platforms, Inc. and affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
#import "RCTScrollContentView.h"
#import <React/RCTAssert.h>
#import <React/UIView+React.h>
#import "RCTScrollView.h"
@implementation RCTScrollContentView
#if TARGET_OS_OSX // [macOS
- (BOOL)isFlipped
{
return !self.inverted;
}
#endif // macOS]
- (void)reactSetFrame:(CGRect)frame
{
[super reactSetFrame:frame];
#if !TARGET_OS_OSX // [macOS]
RCTScrollView *scrollView = (RCTScrollView *)self.superview.superview;
#else // [macOS
// macOS also has a NSClipView in its hierarchy
RCTScrollView *scrollView = (RCTScrollView *)self.superview.superview.superview;
#endif // macOS]
if (!scrollView) {
return;
}
RCTAssert([scrollView isKindOfClass:[RCTScrollView class]], @"Unexpected view hierarchy of RCTScrollView component.");
[scrollView updateContentSizeIfNeeded];
#if TARGET_OS_OSX // [macOS
NSScrollView *platformScrollView = [scrollView scrollView];
if ([platformScrollView accessibilityRole] == NSAccessibilityTableRole) {
NSMutableArray *subViews = [[NSMutableArray alloc] initWithCapacity:[[self subviews] count]];
for (NSView *view in [self subviews]) {
if ([view isKindOfClass:[RCTView class]]) {
[subViews addObject:view];
}
}
[platformScrollView setAccessibilityRows:subViews];
}
#endif // macOS]
}
@end