24 lines
335 B
Objective-C
24 lines
335 B
Objective-C
//
|
|
// TabBarPickerSubItemsView.m
|
|
// Pods
|
|
//
|
|
// Created by Giuseppe Nucifora on 17/07/15.
|
|
//
|
|
//
|
|
|
|
#import "TabBarPickerSubItemsView.h"
|
|
#import <PureLayout/PureLayout.h>
|
|
|
|
@implementation TabBarPickerSubItemsView
|
|
|
|
- (instancetype) init {
|
|
self = [self initForAutoLayout];
|
|
|
|
if (self) {
|
|
|
|
}
|
|
return self;
|
|
}
|
|
|
|
@end
|