SwitchTableViewCell.h 586 B

1234567891011121314151617181920212223
  1. //
  2. // SwitchTableViewCell.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. @protocol SwitchTableViewCellDelegate <NSObject>
  10. -(void)switchStateChanged:(BOOL)newState forPropertyID:(NSString*)propertyID;
  11. @end
  12. @interface SwitchTableViewCell : UITableViewCell
  13. @property (nonatomic,weak) id<SwitchTableViewCellDelegate> delegate;
  14. @property (nonatomic, copy) NSString *PROPERTY_ID;
  15. @property (nonatomic, strong) IBOutlet UILabel *nameLabel;
  16. @property (nonatomic, strong) IBOutlet UISwitch *stateSwitch;
  17. @end