| 12345678910111213141516 |
- //
- // DocumentCell.h
- // shiku_im
- //
- // Created by huangyp-pc on 16/11/9.
- // Copyright © 2016年 Reese. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HypTextView.h"
- @interface DocumentCell : UITableViewCell
- @property(copy,nonatomic)NSString *key;
- @property (nonatomic, strong) HypTextView *MyTextView;
- @property (nonatomic, strong) UILabel *titleName;
- @property (nonatomic,strong) UITextField *tf;
- @end
|