// // SliderTableViewCell.h // TTSDemo // // Created by lappi on 3/16/16. // Copyright © 2016 baidu. All rights reserved. // #import @class SliderTableViewCell; @protocol SliderTableViewCellDelegate -(void)sliderValueChanged:(float)newValue forProperty:(NSString*)propertyID fromSlider:(SliderTableViewCell*)src; @end @interface SliderTableViewCell : UITableViewCell @property (nonatomic)BOOL isContinuous; // continuous stepping or @property (nonatomic,weak) iddelegate; @property (nonatomic,copy)NSString *PROPERTY_ID; @property (nonatomic, strong) IBOutlet UILabel *nameLabel; @property (nonatomic, strong) IBOutlet UILabel *currentValueLabel; @property (nonatomic, strong) IBOutlet UISlider *valueSlider; @end