KWMBlogCell.h 708 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
//
//  KWMBlogCell.h
//  iCemarose
//
//  Created by HouWeiBin on 16/8/24.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "KWMArticlesResult.h"

@interface KWMBlogCell : UITableViewCell

@property(nonatomic,weak) IBOutlet NSLayoutConstraint *headerHeight;

@property(nonatomic,weak) IBOutlet NSLayoutConstraint *imageHeight;

@property(nonatomic,weak) IBOutlet NSLayoutConstraint *vContentHeight;

@property(nonatomic,weak) IBOutlet UILabel *lbTitle;

@property (weak, nonatomic) IBOutlet UILabel *lbContent;

@property(nonatomic,weak) IBOutlet UIImageView *ivImg;

@property (nonatomic) KWMArticlesResult *article;


-(void)setData:(NSInteger)position;

@end