| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 | 
							- 
 - #import "RNNTabBarController.h"
 - 
 - #define kTabBarHiddenDuration 0.3
 - 
 - @implementation RNNTabBarController {
 - 	NSUInteger _currentTabIndex;
 - 	RNNEventEmitter *_eventEmitter;
 - }
 - 
 - - (instancetype)initWithEventEmitter:(id)eventEmitter {
 - 	self = [super init];
 - 	_eventEmitter = eventEmitter;
 - 	self.delegate = self;
 - 	return self;
 - }
 - 
 - - (UIInterfaceOrientationMask)supportedInterfaceOrientations {
 - 	return self.selectedViewController.supportedInterfaceOrientations;
 - }
 - 
 - - (void)setTabBarHidden:(BOOL)hidden animated:(BOOL)animated {
 - 	CGRect frame = self.tabBar.frame;
 - 	CGFloat height = frame.size.height;
 - 	CGFloat offsetY = (hidden ? self.view.frame.size.height : self.view.frame.size.height-height);
 - 	frame.origin.y = offsetY;
 - 	NSTimeInterval duration = animated ? kTabBarHiddenDuration : 0.0;
 - 	
 - 	[UIView animateWithDuration:duration animations:^{
 - 		self.tabBar.frame = frame;
 - 	}];
 - }
 - 
 - - (void)setSelectedIndexByComponentID:(NSString *)componentID {
 - 	for (id child in self.childViewControllers) {
 - 		RNNRootViewController* vc = child;
 - 
 - 		if ([vc.componentId isEqualToString:componentID]) {
 - 			[self setSelectedIndex:[self.childViewControllers indexOfObject:child]];
 - 		}
 - 	}
 - }
 - 
 - - (void)mergeOptions:(RNNOptions *)options {
 - 	[self.getLeafViewController mergeOptions:options];
 - }
 - 
 - - (UIViewController *)getLeafViewController {
 - 	return ((UIViewController<RNNRootViewProtocol>*)self.selectedViewController).getLeafViewController;
 - }
 - 
 - - (UIStatusBarStyle)preferredStatusBarStyle {
 - 	return ((UIViewController<RNNRootViewProtocol>*)self.selectedViewController).preferredStatusBarStyle;
 - }
 - 
 - #pragma mark UITabBarControllerDelegate
 - 
 - - (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
 - 	[_eventEmitter sendBottomTabSelected:@(tabBarController.selectedIndex) unselected:@(_currentTabIndex)];
 - 	_currentTabIndex = tabBarController.selectedIndex;
 - }
 - 
 - @end
 
 
  |