diff --git a/TabSection.h b/TabSection.h new file mode 100644 index 0000000..d962446 --- /dev/null +++ b/TabSection.h @@ -0,0 +1,23 @@ +// +// TabSectionView.h +// CustomTabBar +// +// Created by medma on 7/11/12. +// Copyright 2012 __MyCompanyName__. All rights reserved. +// + +#import + + +@interface TabSectionView : UIView{ + + +} +@property (nonatomic, strong) IBOutlet UIImageView *tabBackground; +@property (nonatomic, strong) IBOutlet UIImageView *tabIcon; +@property (nonatomic, strong) IBOutlet UILabel *tabLabel; +@property (nonatomic, strong) IBOutlet UIButton *tabTouch; + +- (id) initWithFrame:(CGRect)frame; + +@end