blob: c8c2b414bb2b03277033df4488e39b84aea82ef6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
//
// NavCell.h
// Juick
//
// Created by Vitaly Takmazov on 14/08/16.
// Copyright © 2016 com.juick. All rights reserved.
//
#import <UIKit/UIKit.h>
@interface NavCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *icon;
@property (weak, nonatomic) IBOutlet UILabel *descriptionText;
@end
|