mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
468ae234a6
Summary: As part of #22609, this fixes yet more warnings. - Adding more __unused to params. - Refactors `isPackagerRunning` to use NSURLSession. - Turns off suspicious comma warnings [iOS] [Fixed] - Xcode Warnings Pull Request resolved: https://github.com/facebook/react-native/pull/23565 Differential Revision: D14161151 Pulled By: cpojer fbshipit-source-id: 339874711eca718fc6151e84737ccc975225d736
35 lines
908 B
Objective-C
35 lines
908 B
Objective-C
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
#import "RCTMaskedView.h"
|
|
|
|
#import <React/UIView+React.h>
|
|
|
|
@implementation RCTMaskedView
|
|
|
|
- (void)didUpdateReactSubviews
|
|
{
|
|
// RCTMaskedView expects that the first subview rendered is the mask.
|
|
UIView *maskView = [self.reactSubviews firstObject];
|
|
self.maskView = maskView;
|
|
|
|
// Add the other subviews to the view hierarchy
|
|
for (NSUInteger i = 1; i < self.reactSubviews.count; i++) {
|
|
UIView *subview = [self.reactSubviews objectAtIndex:i];
|
|
[self addSubview:subview];
|
|
}
|
|
}
|
|
|
|
- (void)displayLayer:(__unused CALayer *)layer
|
|
{
|
|
// RCTView uses displayLayer to do border rendering.
|
|
// We don't need to do that in RCTMaskedView, so we
|
|
// stub this method and override the default implementation.
|
|
}
|
|
|
|
@end
|