InputTableViewCell.h 627 B

123456789101112131415161718192021222324
  1. //
  2. // InputTableViewCell.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 InputTableViewCellDelegate <NSObject>
  10. -(void)InputCellChangedValue:(NSString*)newValue forProperty:(NSString*)propertyID;
  11. @end
  12. @interface InputTableViewCell : UITableViewCell
  13. @property (nonatomic,weak)id<InputTableViewCellDelegate>delegate;
  14. @property (nonatomic,copy)NSString *PROPERTY_ID;
  15. @property (nonatomic, strong) IBOutlet UITextField *valueField;
  16. @property (nonatomic, strong) IBOutlet UIButton *FinishButton;
  17. - (IBAction)FinishTapped:(id)sender;
  18. @end