react-native-navigation的迁移库

RNNTabBarItemCreator.h 542B

12345678910111213141516
  1. #import <Foundation/Foundation.h>
  2. #import <UIKit/UIKit.h>
  3. #import "RNNBottomTabOptions.h"
  4. @interface RNNTabBarItemCreator : NSObject
  5. + (UITabBarItem *)createTabBarItem:(RNNBottomTabOptions *)bottomTabOptions mergeItem:(UITabBarItem *)mergeItem;
  6. + (UITabBarItem *)createTabBarItem:(UITabBarItem *)mergeItem;
  7. + (void)setTitleAttributes:(UITabBarItem *)tabItem titleAttributes:(NSDictionary *)titleAttributes;
  8. + (void)setSelectedTitleAttributes:(UITabBarItem *)tabItem selectedTitleAttributes:(NSDictionary *)selectedTitleAttributes;
  9. @end