You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
509 B
29 lines
509 B
// |
|
// AllQViewController.h |
|
// tongxin |
|
// |
|
// Created by WeiChaoZheng on 2018/10/23. |
|
// Copyright © 2018年 xTT. All rights reserved. |
|
// |
|
|
|
#import "baseTabViewController.h" |
|
|
|
|
|
@interface AllQViewController : baseTabViewController |
|
|
|
/** |
|
分类ID |
|
*/ |
|
@property (nonatomic, strong) NSString *categoryid; |
|
/** |
|
分类标题 |
|
*/ |
|
@property (nonatomic, strong) NSString *categoryTitle; |
|
|
|
|
|
@property (strong, nonatomic) IBOutlet UILabel *titleLabel; |
|
|
|
|
|
@property (weak, nonatomic) IBOutlet UIView *titleTempView; |
|
|
|
@end
|
|
|