diff options
Diffstat (limited to 'Juick/TitleView.h')
-rw-r--r-- | Juick/TitleView.h | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Juick/TitleView.h b/Juick/TitleView.h new file mode 100644 index 0000000..17288ef --- /dev/null +++ b/Juick/TitleView.h @@ -0,0 +1,19 @@ +// +// TitleView.h +// Juick +// +// Created by Vitaly on 01.02.14. +// Copyright (c) 2014 com.juick. All rights reserved. +// + +#import <UIKit/UIKit.h> +#import "UILabel+Utils.h" +#import "ColorScheme.h" + +@interface TitleView : UIView +@property (nonatomic, strong) IBOutlet UIImageView *image; +@property (nonatomic, strong) IBOutlet UILabel *title; + +-(id) initWithImage:(UIImage *) image title:(NSString *)title; + +@end |