// // MessageBoxViewController.h // kneet2 // // Created by Jason Lee on 10/14/15. // Copyright © 2015 ntels. All rights reserved. // #import "JDViewController.h" #import "KNTableViewCell.h" @class CustomButton; @class CustomLabel; @class CustomTableViewCell; @class CustomImageView; @interface MessageBoxViewController : JDViewController #pragma mark - Properties @property (weak, nonatomic) IBOutlet CustomTableView *tableView; @property (weak, nonatomic) IBOutlet CustomButton *btnClose; #pragma mark - Instance Methods - (IBAction)btnCloseTouched:(id)sender; @end @interface MessageBoxTableViewCell : KNTableViewCell @property (weak, nonatomic) IBOutlet CustomImageView *imgvStatus; @property (weak, nonatomic) IBOutlet CustomLabel *lblContent; @property (weak, nonatomic) IBOutlet CustomLabel *lblSubContent; @property (weak, nonatomic) IBOutlet CustomLabel *lblReadDatatime; @end