mirror of
https://github.com/zhigang1992/transshift.git
synced 2026-05-16 01:51:45 +08:00
20 lines
470 B
Objective-C
20 lines
470 B
Objective-C
//
|
|
// StatusListCell.h
|
|
// TransmissionRPCClient
|
|
//
|
|
// Created by Alexey Chechetkin on 01.07.15.
|
|
// Copyright (c) 2015 Alexey Chechetkin. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
#define CELL_ID_STATUSLIST @"statusListCell"
|
|
|
|
@interface StatusListCell : UITableViewCell
|
|
|
|
@property (weak, nonatomic) IBOutlet UILabel *statusLabel;
|
|
@property (weak, nonatomic) IBOutlet UILabel *numberLabel;
|
|
@property (weak, nonatomic) IBOutlet UIImageView *iconImg;
|
|
|
|
@end
|