mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
13759f192d
Summary: Changelog: [Internal] Add IGviewpoint to get image visibility callbacks for when an UIImageView is in or out of view Reviewed By: fkgozali Differential Revision: D23428528 fbshipit-source-id: 87e4cee8fbe3c6b7da5153f87bbb530b2f990d96
16 lines
370 B
Objective-C
16 lines
370 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.
|
|
*/
|
|
|
|
@protocol RCTImageLoaderInstrumentableProtocol
|
|
|
|
/**
|
|
* Image instrumentation - get name of the image loader module
|
|
*/
|
|
- (NSString *)loaderModuleNameForRequestUrl:(NSURL *)url;
|
|
|
|
@end
|