SelectOrderTableViewCell.h 532 B

1234567891011121314151617181920
  1. //
  2. // selectOrderTableViewCell.h
  3. // iSales-NPD
  4. //
  5. // Created by Ray on 9/3/16.
  6. // Copyright © 2016 United Software Applications, Inc. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void (^checkButtonBlock)(void);
  10. @interface SelectOrderTableViewCell : UITableViewCell
  11. @property (strong, nonatomic) IBOutlet UILabel *labelsoid;
  12. @property (strong, nonatomic) IBOutlet UILabel *labelcompany;
  13. @property (strong, nonatomic) IBOutlet UIButton *checkedButton;
  14. @property (nonatomic,copy) checkButtonBlock checkBlock;
  15. @end