mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-21 08:22:45 +08:00
Summary: `RCTImageView` is now a subclass of `RCTView` and includes `UIImageView` as it's subview. This enables the use of `borderRadius`, `borderWidth`, `borderColor` properties and all of their derivatives. Possible problem: Now `RCTImageView` is backed by two views (`RCTView` + `UIImageView`), not a single one. That's 4 `CALayers`. Possible workaround would be to insert the image directly into `self.layer.contents`. Reviewed By: RSNara Differential Revision: D14875673 fbshipit-source-id: 594b2cd1ddffc6627566e07983c6d8f0b37dc2bb
27 lines
783 B
Objective-C
27 lines
783 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 <UIKit/UIKit.h>
|
|
#import <React/RCTView.h>
|
|
#import <React/RCTResizeMode.h>
|
|
|
|
@class RCTBridge;
|
|
@class RCTImageSource;
|
|
|
|
@interface RCTImageView : RCTView
|
|
|
|
- (instancetype)initWithBridge:(RCTBridge *)bridge NS_DESIGNATED_INITIALIZER;
|
|
|
|
@property (nonatomic, assign) UIEdgeInsets capInsets;
|
|
@property (nonatomic, strong) UIImage *defaultImage;
|
|
@property (nonatomic, assign) UIImageRenderingMode renderingMode;
|
|
@property (nonatomic, copy) NSArray<RCTImageSource *> *imageSources;
|
|
@property (nonatomic, assign) CGFloat blurRadius;
|
|
@property (nonatomic, assign) RCTResizeMode resizeMode;
|
|
|
|
@end
|