Summary: Move UIDebugger plugin to OSS space. Reviewed By: passy Differential Revision: D47634848 fbshipit-source-id: 90e8c0181a2434d0e5d76bdb99b902051e6d702e
32 lines
739 B
Objective-C
32 lines
739 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 "UIDNodeDescriptor.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
UITabBarController
|
|
(https://developer.apple.com/documentation/uikit/uitabbarcontroller?language=objc)
|
|
Properties:
|
|
- viewControllers: root view controllers displayed by the tab bar user
|
|
interface.
|
|
- selectedViewController: the view controller associated with the
|
|
currently selected tab bar item.
|
|
*/
|
|
@interface UIDUITabBarControllerDescriptor
|
|
: UIDNodeDescriptor<UITabBarController*>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|
|
|
|
#endif
|