1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| //
| // OnlySpecialTwo.h
| // BuWanVideo2.0
| //
| // Created by weikou2016 on 16/8/22.
| // Copyright © 2016年 com.yeshi.buwansheque.ios. All rights reserved.
| //
|
| #import <UIKit/UIKit.h>
|
| @interface OnlySpecialTwo : UITableViewCell
| @property (weak, nonatomic) IBOutlet UILabel *title; //标题
| @property (weak, nonatomic) IBOutlet UILabel *lable; //正文 自适应
| @property (weak, nonatomic) IBOutlet NSLayoutConstraint *lableheight;
|
| @property(nonatomic,assign)BOOL autoheight;
| @end
|
|