PictureTableCell.h 691 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10
//
//  PictureTableCell.h
//  redstar
//
//  Created by admin on 15/11/1.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "ZanButton.h"
admin's avatar
admin committed
11
#import "PictureListModel.h"
12 13 14 15 16 17

@interface PictureTableCell : UITableViewCell

@property (nonatomic, strong) UIImageView *titleImageView;
@property (nonatomic, strong) UILabel *titleLabel;
@property (nonatomic, strong) UILabel *detailsLabel;
admin's avatar
admin committed
18
@property (nonatomic, strong) UILabel *adressLabel;
19 20 21 22 23 24
@property (nonatomic, strong) UILabel *dateLabel;


@property (nonatomic, strong) ZanButton *thumbBtn;
@property (nonatomic, strong) ZanButton *commentBtn;

admin's avatar
admin committed
25 26
@property (nonatomic, strong) PictureListModel *pictureList;

27
@end