// // TabBarSubItem.h // Pods // // Created by Giuseppe Nucifora on 15/07/15. // // #import @interface TabBarSubItem : UIView @property (nonatomic, strong) NSString *name; @property (nonatomic, strong) UIButton *subItemButton; @property (nonatomic, strong) id firstValue; @property (nonatomic, strong) id secondValue; + (instancetype) tabBarSubItemWithName:(NSString*)name andValue:(id) value; + (instancetype) tabBarSubItemWithName:(NSString*)name firstValue:(id) firstValue secondValue:(id) secondValue; - (NSUInteger) numberOfValues; @end