12345678910111213141516 |
- //
- // NavigationTableViewCell.h
- // TTSDemo
- //
- // Created by lappi on 3/16/16.
- // Copyright © 2016 baidu. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface NavigationTableViewCell : UITableViewCell
- @property (nonatomic, strong) IBOutlet UILabel *nameLabel;
- @property (nonatomic, strong) IBOutlet UILabel *currentValueLabel;
- @end
|