| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- //
- // HomeLogsViewController.h
- // kneet
- //
- // Created by Jason Lee on 4/28/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- #import "JDViewController.h"
- @class CustomLabel;
- @class CustomButton;
- @class CustomImageView;
- @interface HomeLogsViewController : JDViewController
- #pragma mark - Properties
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- #pragma mark - Instance Methods
- @end
- @interface HomeLogsHeaderTableView : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblHeader;
- @end
- @interface HomeLogsRuleTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTime;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblRule;
- @end
- @interface HomeLogsMemberTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTime;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
- @property (weak, nonatomic) IBOutlet CustomButton *imgvMemberIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRole;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberName;
- @end
- @interface HomeLogsHomeTableViewCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTime;
- @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
- @property (weak, nonatomic) IBOutlet CustomButton *imgvMemberIcon;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRole;
- @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberName;
- @end
|