NavigationTableViewCell.h 345 B

12345678910111213141516
  1. //
  2. // NavigationTableViewCell.h
  3. // TTSDemo
  4. //
  5. // Created by lappi on 3/16/16.
  6. // Copyright © 2016 baidu. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface NavigationTableViewCell : UITableViewCell
  10. @property (nonatomic, strong) IBOutlet UILabel *nameLabel;
  11. @property (nonatomic, strong) IBOutlet UILabel *currentValueLabel;
  12. @end