24 lines
577 B
Objective-C
24 lines
577 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 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
|