//
// 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