ModePopTableView.h 515 B

123456789101112131415161718192021222324
  1. //
  2. // ModePopTableView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 5/12/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @class ItemModel;
  11. @interface ModePopTableView : CustomAlertView
  12. @property (strong, nonatomic) ItemModel *condition;
  13. @property (strong, nonatomic) NSString *homeModes;
  14. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  15. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightConstraint;
  16. - (id)initFromNib;
  17. @end