File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1313
1414@interface RCTTabBar : UIView
1515
16- @property (nonatomic , copy ) UIColor *tintColor;
17- @property (nonatomic , copy ) UIColor *barTintColor;
16+ @property (nonatomic , strong ) UIColor *tintColor;
17+ @property (nonatomic , strong ) UIColor *barTintColor;
1818
1919- (instancetype )initWithEventDispatcher : (RCTEventDispatcher *)eventDispatcher NS_DESIGNATED_INITIALIZER;
2020
Original file line number Diff line number Diff line change @@ -132,11 +132,13 @@ - (void)reactBridgeDidFinishTransaction
132132 }];
133133}
134134
135- - (void )setBarTintColor : (UIColor *)barTintColor {
135+ - (void )setBarTintColor : (UIColor *)barTintColor
136+ {
136137 _tabController.tabBar .barTintColor = barTintColor;
137138}
138139
139- - (void )setTintColor : (UIColor *)tintColor {
140+ - (void )setTintColor : (UIColor *)tintColor
141+ {
140142 _tabController.tabBar .tintColor = tintColor;
141143}
142144
You can’t perform that action at this time.
0 commit comments