| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- //
- // 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 CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomTableView *tableView;
- @property (weak, nonatomic) IBOutlet CustomButton *btnClose;
- @property (weak, nonatomic) IBOutlet UIView *noContentView;
- #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 *lblReadDatatime;
- @property (weak, nonatomic) IBOutlet UIView *containerView;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblSubContent;
- @property (weak, nonatomic) IBOutlet CustomButton *btnSubContent;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintImgvClockTop;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *constraintContainerViewTop;
- @end
|