blob: e210636b5621c26f6df3df9db99098a1df05fba8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// NavCell.h
// Juick
//
// Created by Vitaly on 17.12.13.
// Copyright (c) 2013 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "UILabel+Utils.h"
@interface NavCell : UITableViewCell
@property (strong, nonatomic) IBOutlet UILabel *iconLabel;
@property (strong, nonatomic) IBOutlet UILabel *descriptionTextLabel;
@end
|