ForumItemListViewController.h 1.01 KB
Newer Older
1 2 3 4
//
//  ForumItemListViewController.h
//  Lighting
//
曹云霄's avatar
曹云霄 committed
5
//  Created by 曹云霄 on 2016/12/8.
6 7 8
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

曹云霄's avatar
曹云霄 committed
9
#import "BaseViewController.h"
10

曹云霄's avatar
曹云霄 committed
11 12 13
@interface ForumItemListViewController : BaseViewController


14 15 16 17
/**
 帖子列表
 */
@property (weak, nonatomic) IBOutlet UITableView *classificationListTableView;
曹云霄's avatar
曹云霄 committed
18

19 20 21 22 23
/**
 分类头像
 */
@property (weak, nonatomic) IBOutlet UIImageView *classifyImageView;

曹云霄's avatar
曹云霄 committed
24 25 26 27 28
/**
 分类图标
 */
@property (weak, nonatomic) IBOutlet UIImageView *classIconImageView;

29 30 31 32 33
/**
 分类标题
 */
@property (weak, nonatomic) IBOutlet UILabel *classifyTitleLabel;

曹云霄's avatar
曹云霄 committed
34 35 36 37 38
/**
 发帖按钮
 */
@property (weak, nonatomic) IBOutlet UIButton *postingButton;

39 40 41 42 43 44 45 46
/**
 帖子数量
 */
@property (weak, nonatomic) IBOutlet UILabel *classifyListCountLabel;

/**
 分类
 */
47
@property (nonatomic,strong) TOForumCategoryEntity *category;
48

曹云霄's avatar
曹云霄 committed
49 50
/**
 是否允许发帖
51 52 53
 0 不允许发帖
 1 允许发帖
 2 允许提问
曹云霄's avatar
曹云霄 committed
54
 */
55
@property (nonatomic,assign) NSInteger isPosting;
56

57
@end