react-native-navigation的迁移库

UIViewController+RNNOptions.m 5.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. #import "UIViewController+RNNOptions.h"
  2. #import <React/RCTRootView.h>
  3. #define kStatusBarAnimationDuration 0.35
  4. const NSInteger BLUR_STATUS_TAG = 78264801;
  5. @implementation UIViewController (RNNOptions)
  6. - (void)rnn_setBackgroundImage:(UIImage *)backgroundImage {
  7. if (backgroundImage) {
  8. UIImageView* backgroundImageView = (self.view.subviews.count > 0) ? self.view.subviews[0] : nil;
  9. if (![backgroundImageView isKindOfClass:[UIImageView class]]) {
  10. backgroundImageView = [[UIImageView alloc] initWithFrame:self.view.bounds];
  11. [self.view insertSubview:backgroundImageView atIndex:0];
  12. }
  13. backgroundImageView.layer.masksToBounds = YES;
  14. backgroundImageView.image = backgroundImage;
  15. [backgroundImageView setContentMode:UIViewContentModeScaleAspectFill];
  16. }
  17. }
  18. - (void)rnn_setModalPresentationStyle:(UIModalPresentationStyle)modalPresentationStyle {
  19. self.modalPresentationStyle = modalPresentationStyle;
  20. }
  21. - (void)rnn_setModalTransitionStyle:(UIModalTransitionStyle)modalTransitionStyle {
  22. self.modalTransitionStyle = modalTransitionStyle;
  23. }
  24. - (void)rnn_setSearchBarWithPlaceholder:(NSString *)placeholder
  25. hideNavBarOnFocusSearchBar:(BOOL)hideNavBarOnFocusSearchBar {
  26. if (@available(iOS 11.0, *)) {
  27. if (!self.navigationItem.searchController) {
  28. UISearchController *search = [[UISearchController alloc]initWithSearchResultsController:nil];
  29. search.dimsBackgroundDuringPresentation = NO;
  30. if ([self conformsToProtocol:@protocol(UISearchResultsUpdating)]) {
  31. [search setSearchResultsUpdater:((UIViewController <UISearchResultsUpdating> *) self)];
  32. }
  33. search.searchBar.delegate = (id<UISearchBarDelegate>)self;
  34. if (placeholder) {
  35. search.searchBar.placeholder = placeholder;
  36. }
  37. search.hidesNavigationBarDuringPresentation = hideNavBarOnFocusSearchBar;
  38. self.navigationItem.searchController = search;
  39. [self.navigationItem setHidesSearchBarWhenScrolling:NO];
  40. // Fixes #3450, otherwise, UIKit will infer the presentation context to be the root most view controller
  41. self.definesPresentationContext = YES;
  42. }
  43. }
  44. }
  45. - (void)rnn_setSearchBarHiddenWhenScrolling:(BOOL)searchBarHidden {
  46. if (@available(iOS 11.0, *)) {
  47. self.navigationItem.hidesSearchBarWhenScrolling = searchBarHidden;
  48. }
  49. }
  50. - (void)rnn_setNavigationItemTitle:(NSString *)title {
  51. self.navigationItem.title = title;
  52. }
  53. - (void)rnn_setDrawBehindTopBar:(BOOL)drawBehind {
  54. if (drawBehind) {
  55. [self setExtendedLayoutIncludesOpaqueBars:YES];
  56. self.edgesForExtendedLayout |= UIRectEdgeTop;
  57. } else {
  58. self.edgesForExtendedLayout &= ~UIRectEdgeTop;
  59. }
  60. }
  61. - (void)rnn_setDrawBehindTabBar:(BOOL)drawBehindTabBar {
  62. if (drawBehindTabBar) {
  63. [self setExtendedLayoutIncludesOpaqueBars:YES];
  64. self.edgesForExtendedLayout |= UIRectEdgeBottom;
  65. } else {
  66. self.edgesForExtendedLayout &= ~UIRectEdgeBottom;
  67. }
  68. }
  69. - (void)rnn_setTabBarItemBadge:(NSString *)badge {
  70. UITabBarItem *tabBarItem = self.tabBarItem;
  71. if ([badge isKindOfClass:[NSNull class]] || [badge isEqualToString:@""]) {
  72. tabBarItem.badgeValue = nil;
  73. } else {
  74. tabBarItem.badgeValue = badge;
  75. }
  76. }
  77. - (void)rnn_setTabBarItemBadgeColor:(UIColor *)badgeColor {
  78. if (@available(iOS 10.0, *)) {
  79. self.tabBarItem.badgeColor = badgeColor;
  80. }
  81. }
  82. - (void)rnn_setStatusBarStyle:(NSString *)style animated:(BOOL)animated {
  83. if (animated) {
  84. [UIView animateWithDuration:[self statusBarAnimationDuration:animated] animations:^{
  85. [self setNeedsStatusBarAppearanceUpdate];
  86. }];
  87. } else {
  88. [self setNeedsStatusBarAppearanceUpdate];
  89. }
  90. }
  91. - (void)rnn_setTopBarPrefersLargeTitle:(BOOL)prefersLargeTitle {
  92. if (@available(iOS 11.0, *)) {
  93. if (prefersLargeTitle) {
  94. self.navigationItem.largeTitleDisplayMode = UINavigationItemLargeTitleDisplayModeAlways;
  95. } else {
  96. self.navigationItem.largeTitleDisplayMode = UINavigationItemLargeTitleDisplayModeNever;
  97. }
  98. }
  99. }
  100. - (void)rnn_setStatusBarBlur:(BOOL)blur {
  101. UIView* curBlurView = [self.view viewWithTag:BLUR_STATUS_TAG];
  102. if (blur) {
  103. if (!curBlurView) {
  104. UIVisualEffectView *blur = [[UIVisualEffectView alloc] initWithEffect:[UIBlurEffect effectWithStyle:UIBlurEffectStyleLight]];
  105. blur.frame = [[UIApplication sharedApplication] statusBarFrame];
  106. blur.tag = BLUR_STATUS_TAG;
  107. [self.view insertSubview:blur atIndex:0];
  108. }
  109. } else {
  110. if (curBlurView) {
  111. [curBlurView removeFromSuperview];
  112. }
  113. }
  114. }
  115. - (void)rnn_setBackgroundColor:(UIColor *)backgroundColor {
  116. self.view.backgroundColor = backgroundColor;
  117. }
  118. - (void)rnn_setBackButtonVisible:(BOOL)visible {
  119. self.navigationItem.hidesBackButton = !visible;
  120. }
  121. - (CGFloat)statusBarAnimationDuration:(BOOL)animated {
  122. return animated ? kStatusBarAnimationDuration : CGFLOAT_MIN;
  123. }
  124. - (BOOL)isModal {
  125. if([self presentingViewController])
  126. return YES;
  127. if([[[self navigationController] presentingViewController] presentedViewController] == [self navigationController])
  128. return YES;
  129. if([[[self tabBarController] presentingViewController] isKindOfClass:[UITabBarController class]])
  130. return YES;
  131. return NO;
  132. }
  133. - (void)rnn_setInterceptTouchOutside:(BOOL)interceptTouchOutside {
  134. if ([self.view isKindOfClass:[RCTRootView class]]) {
  135. RCTRootView* rootView = (RCTRootView*)self.view;
  136. rootView.passThroughTouches = !interceptTouchOutside;
  137. }
  138. }
  139. @end