TabBarPicker/Pod/Classes/TabBarSubItem.h
2015-08-18 12:17:26 +02:00

20 lines
383 B
Objective-C

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