| 123456789101112131415161718192021222324 |
- //
- // ModePopTableView.h
- // kneet
- //
- // Created by Jason Lee on 5/12/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @class ItemModel;
- @interface ModePopTableView : CustomAlertView
- @property (strong, nonatomic) ItemModel *condition;
- @property (strong, nonatomic) NSString *homeModes;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightConstraint;
- - (id)initFromNib;
- @end
|