blob: 17288ef5ee130a0927544d93fb09f4c00489d8b7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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
|