From a512f6dcf6ef3fd04987c1f05c0b57fb616cfe80 Mon Sep 17 00:00:00 2001 From: Kevin Gozali Date: Wed, 15 Feb 2017 02:15:20 -0800 Subject: [PATCH] ios: exposed 'RCTConvert UITabBarSystemItem:' in the header file Summary: This method was defined in the .m file already, so we can just expose it to the header for other usages. Reviewed By: mmmulani, shergin Differential Revision: D4557942 fbshipit-source-id: a1be8af8e31b88a152cabfab6d4cf82316088572 --- React/Views/RCTTabBarItem.h | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/React/Views/RCTTabBarItem.h b/React/Views/RCTTabBarItem.h index 63043192c..7d880a580 100644 --- a/React/Views/RCTTabBarItem.h +++ b/React/Views/RCTTabBarItem.h @@ -10,6 +10,13 @@ #import #import +#import + +@interface RCTConvert (UITabBarSystemItem) + ++ (UITabBarSystemItem)UITabBarSystemItem:(id)json; + +@end @interface RCTTabBarItem : UIView