react-native-navigation的迁移库

RCCCustomTitleView.h 544B

12345678910111213141516171819
  1. //
  2. // RCCTitleView.h
  3. // ReactNativeNavigation
  4. //
  5. // Created by Ran Greenberg on 26/04/2017.
  6. // Copyright © 2017 artal. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import <React/RCTRootView.h>
  10. #import <React/RCTRootViewDelegate.h>
  11. @interface RCCCustomTitleView : UIView <RCTRootViewDelegate>
  12. - (instancetype)initWithFrame:(CGRect)frame subView:(RCTRootView*)subView alignment:(NSString*)alignment;
  13. - (void)viewWillTransitionToSize:(CGSize)size withTransitionCoordinator:(id<UIViewControllerTransitionCoordinator>)coordinator;
  14. @end