InvitationAnswerViewController.h 663 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // InvitationAnswerViewController.h
  3. // kneet2
  4. //
  5. // Created by Jason Lee on 10/21/15.
  6. // Copyright © 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomImageView;
  10. @class CustomButton;
  11. @class CustomLabel;
  12. @class InvitationModel;
  13. @interface InvitationAnswerViewController : JDViewController
  14. #pragma mark - Properties
  15. @property (weak, nonatomic) InvitationModel *invitation;
  16. @property (weak, nonatomic) IBOutlet CustomImageView *imgvFromProfile;
  17. @property (weak, nonatomic) IBOutlet CustomLabel *lblQuiz;
  18. #pragma mark - Instance Methods
  19. - (IBAction)btnAnswerTouched:(id)sender;
  20. - (IBAction)btnCloseTouched:(id)sender;
  21. @end