DocumentCell.h 419 B

12345678910111213141516
  1. //
  2. // DocumentCell.h
  3. // shiku_im
  4. //
  5. // Created by huangyp-pc on 16/11/9.
  6. // Copyright © 2016年 Reese. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HypTextView.h"
  10. @interface DocumentCell : UITableViewCell
  11. @property(copy,nonatomic)NSString *key;
  12. @property (nonatomic, strong) HypTextView *MyTextView;
  13. @property (nonatomic, strong) UILabel *titleName;
  14. @property (nonatomic,strong) UITextField *tf;
  15. @end