BaseTableViewCell.h 328 B

12345678910111213141516
  1. //
  2. // BaseTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by GuoMs on 16/8/6.
  6. // Copyright © 2016年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BaseTableViewCell : UITableViewCell
  10. @property (strong, nonatomic) IBOutlet UILabel *nameL;
  11. @property (strong, nonatomic) IBOutlet UITextField *text_field;
  12. @end