// // GoodbyeViewController.h // kneet // // Created by Jason Lee on 5/13/15. // Copyright (c) 2015 ntels. All rights reserved. // #import "JDViewController.h" @class CustomLabel; @class CustomButton; @interface GoodbyeViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc1; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc2; @property (weak, nonatomic) IBOutlet CustomLabel *lblDesc3; @property (weak, nonatomic) IBOutlet CustomButton *btnAgain; #pragma mark - Instance Methods - (IBAction)btnAgainTouched:(id)sender; @end