2015-07-28 14:31:26 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This source code is licensed under the BSD-style license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
|
|
|
|
@interface RCTModalHostViewController : UIViewController
|
|
|
|
|
|
|
|
@property (nonatomic, copy) void (^boundsDidChangeBlock)(CGRect newBounds);
|
|
|
|
|
2016-09-27 13:19:45 +00:00
|
|
|
#if !TARGET_OS_TV
|
2016-09-07 13:06:12 +00:00
|
|
|
@property (nonatomic, assign) UIInterfaceOrientationMask supportedInterfaceOrientations;
|
2016-09-27 13:19:45 +00:00
|
|
|
#endif
|
2016-09-07 13:06:12 +00:00
|
|
|
|
2015-07-28 14:31:26 +00:00
|
|
|
@end
|