KWMBlogDetailVC.h 886 Bytes
Newer Older
houweibin committed
1 2 3 4 5 6 7 8 9 10 11
//
//  KWMBlogDetailVC.h
//  iCemarose
//
//  Created by 陈荣科 on 2016/10/28.
//  Copyright © 2016年 kollway. All rights reserved.
//

#import "KWMBaseVC.h"
#import "KWMArticlesResult.h"

12 13 14 15 16
typedef NS_ENUM(NSInteger, KWMContentType) {
    KWMContentTypeBlog,//默认从0开始
    KWMContentTypePage,
};

houweibin committed
17 18 19 20 21 22 23
@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;
lee committed
24
@property (weak, nonatomic) IBOutlet UIImageView *flagImg;
houweibin committed
25
@property (nonatomic) KWMArticlesResult *article;
lee committed
26
@property (nonatomic) NSString *handle;
27
@property (nonatomic) KWMContentType type;
lee committed
28

houweibin committed
29
@end