PopTableView.h 707 B

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // PopTableView.h
  3. // kneet
  4. //
  5. // Created by Jason Lee on 4/27/15.
  6. // Copyright (c) 2015 ntels. All rights reserved.
  7. //
  8. @import UIKit;
  9. #import "CustomAlertView.h"
  10. @protocol PopTableViewDelegate <NSObject>
  11. @optional
  12. - (void)didSelectAddress:(NSDictionary *)addrDic;
  13. @end
  14. @class CustomRadioReusableGroup;
  15. @interface PopTableView : CustomAlertView
  16. @property (weak, nonatomic) id <PopTableViewDelegate> delegate;
  17. @property (strong, nonatomic) NSArray *dataArray;
  18. @property (strong, nonatomic) CustomRadioReusableGroup *rgroup;
  19. @property (weak, nonatomic) IBOutlet UITableView *tableView;
  20. @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightConstraint;
  21. - (id)initFromNib;
  22. @end