HomeLogsViewController.h 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. //
  2. // HomeLogsViewController.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/28/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. #import "JDViewController.h"
  9. @class CustomLabel;
  10. @class CustomButton;
  11. @class CustomImageView;
  12. @interface HomeLogsViewController : JDViewController
  13. #pragma mark - Properties
  14. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  15. #pragma mark - Instance Methods
  16. @end
  17. @interface HomeLogsHeaderTableView : UITableViewCell
  18. @property (weak, nonatomic) IBOutlet CustomLabel *lblHeader;
  19. @end
  20. @interface HomeLogsRuleTableViewCell : UITableViewCell
  21. @property (weak, nonatomic) IBOutlet CustomLabel *lblTime;
  22. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  23. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  24. @property (weak, nonatomic) IBOutlet CustomLabel *lblRule;
  25. @end
  26. @interface HomeLogsMemberTableViewCell : UITableViewCell
  27. @property (weak, nonatomic) IBOutlet CustomLabel *lblTime;
  28. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  29. @property (weak, nonatomic) IBOutlet CustomButton *imgvMemberIcon;
  30. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  31. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRole;
  32. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberName;
  33. @end
  34. @interface HomeLogsHomeTableViewCell : UITableViewCell
  35. @property (weak, nonatomic) IBOutlet CustomLabel *lblTime;
  36. @property (weak, nonatomic) IBOutlet CustomImageView *imgvIcon;
  37. @property (weak, nonatomic) IBOutlet CustomButton *imgvMemberIcon;
  38. @property (weak, nonatomic) IBOutlet CustomLabel *lblTitle;
  39. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberRole;
  40. @property (weak, nonatomic) IBOutlet CustomLabel *lblMemberName;
  41. @end