mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Reviewed By: fkgozali Differential Revision: D23447863 fbshipit-source-id: db16d97034a8d4ba6fcd08da5068039450f3c57b
24 lines
504 B
Objective-C
24 lines
504 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 <React/RCTImageResponseDelegate.h>
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* UIView class for root <Image> component.
|
|
*/
|
|
@interface RCTImageComponentView : RCTViewComponentView <RCTImageResponseDelegate> {
|
|
@protected
|
|
UIImageView *_imageView;
|
|
}
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|