ThingsAddFailViewController.h 625 B

1234567891011121314151617181920212223242526
  1. //
  2. // ThingsAddFailViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 11/13/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @interface ThingsAddFailViewController : JDViewController
  10. #pragma mark - Properties
  11. @property (weak, nonatomic) NSDictionary *addableDevice;
  12. @property (weak, nonatomic) IBOutlet UIView *maskView;
  13. @property (weak, nonatomic) IBOutlet UIView *popView;
  14. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintPopViewTop;
  15. #pragma mark - Instance Methods
  16. - (IBAction)btnRetryTouched:(id)sender;
  17. - (IBAction)btnCancelTouched:(id)sender;
  18. @end