TabBarPicker/Pod/Classes/TabBarPickerSubItemsView.m
2015-07-21 09:21:33 +02:00

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