Summary: ^ SKDescriptorMapper owns the SKNodeDescriptor instances. SKNodeDescriptor instances should only have a weak reference to the mapper as to avoid retain cycles. Reviewed By: passy Differential Revision: D42673698 fbshipit-source-id: 8c98709b28fc3c711dc56c179c7c362417fa1f9d
19 lines
385 B
Objective-C
19 lines
385 B
Objective-C
/*
|
|
* 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.
|
|
*/
|
|
|
|
#if FB_SONARKIT_ENABLED
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#import <FlipperKitLayoutHelpers/SKNodeDescriptor.h>
|
|
|
|
@interface SKViewControllerDescriptor : SKNodeDescriptor<UIViewController*>
|
|
|
|
@end
|
|
|
|
#endif
|