// // KWMBlogDetailVC.h // iCemarose // // Created by 陈荣科 on 2016/10/28. // Copyright © 2016年 kollway. All rights reserved. // #import "KWMBaseVC.h" #import "KWMArticlesResult.h" typedef NS_ENUM(NSInteger, KWMContentType) { KWMContentTypeBlog,//默认从0开始 KWMContentTypePage, }; @interface KWMBlogDetailVC : KWMBaseVC @property (weak, nonatomic) IBOutlet UIWebView *wbArticle; @property (weak, nonatomic) IBOutlet UIView *vTop; @property (weak, nonatomic) IBOutlet UITableView *tbvArticle; @property (weak, nonatomic) IBOutlet UILabel *lbTitle; @property (weak, nonatomic) IBOutlet UILabel *publishTime; @property (weak, nonatomic) IBOutlet UIView *vHeader; @property (weak, nonatomic) IBOutlet UIImageView *flagImg; @property (nonatomic) KWMArticlesResult *article; @property (nonatomic) NSString *handle; @property (nonatomic) KWMContentType type; @end