Explorar el Código

fix compilation error, sorry :) (#2070)

Ran Greenberg hace 7 años
padre
commit
3c5b4fd782
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1
    1
      ios/RCCTabBarController.m

+ 1
- 1
ios/RCCTabBarController.m Ver fichero

@@ -266,7 +266,7 @@
266 266
         NSString *badgeColor = actionParams[@"badgeColor"];
267 267
         UIColor *color = badgeColor != (id)[NSNull null] ? [RCTConvert UIColor:badgeColor] : nil;
268 268
         
269
-        if (viewController.tabBarItem respondsToSelector:@selector(badgeColor)) {
269
+        if ([viewController.tabBarItem respondsToSelector:@selector(badgeColor)]) {
270 270
           viewController.tabBarItem.badgeColor = color;
271 271
         }
272 272
         viewController.tabBarItem.badgeValue = [NSString stringWithFormat:@"%@", badge];