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