Last active
February 11, 2016 09:45
-
-
Save z5ottu/3e7ff2420f4e3c21ced5 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// | |
// CustomTab.h | |
// | |
// Created by z5ottu Szloboda Zsolt on 10/02/16. | |
// Copyright © 2016 z5 tech. All rights reserved. | |
// | |
// compatibility: ios8, ios9 | |
#ifndef CustomTab_h | |
#define CustomTab_h | |
#import <UIKit/UIKit.h> | |
@interface CustomTab : UITabBarController <UITabBarControllerDelegate> | |
@property (weak, nonatomic) IBOutlet UITabBar *tabBar; // Bind to tabbarcontroller's uitabbar element on the storyboard! | |
- (UIImage *)imageFromColor:(UIColor *)color setwidth:(CGFloat)width setheight:(CGFloat)height; | |
@end | |
#endif /* CustomTab_h */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment