TabBarPicker/Pod/Classes/TabBarSubItem.m
2015-07-15 18:26:19 +02:00

29 lines
406 B
Objective-C

//
// TabBarSubItem.m
// Pods
//
// Created by Giuseppe Nucifora on 15/07/15.
//
//
#import "TabBarSubItem.h"
@implementation TabBarSubItem
- (instancetype) initWithName:(NSString *) name {
self = [super init];
if (self) {
_name = name;
}
return self;
}
+ (instancetype) tabBarSubItemWithName:(NSString*)name {
return [[self alloc] initWithName:name];
}
@end