| 1234567891011121314151617181920212223242526272829303132 |
- //
- // PopTableView.h
- // kneet
- //
- // Created by Jason Lee on 4/27/15.
- // Copyright (c) 2015 ntels. All rights reserved.
- //
- @import UIKit;
- #import "CustomAlertView.h"
- @protocol PopTableViewDelegate <NSObject>
- @optional
- - (void)didSelectAddress:(NSDictionary *)addrDic;
- @end
- @class CustomRadioReusableGroup;
- @interface PopTableView : CustomAlertView
- @property (weak, nonatomic) id <PopTableViewDelegate> delegate;
- @property (strong, nonatomic) NSArray *dataArray;
- @property (strong, nonatomic) CustomRadioReusableGroup *rgroup;
- @property (weak, nonatomic) IBOutlet UITableView *tableView;
- @property (weak, nonatomic) IBOutlet NSLayoutConstraint *tableViewHeightConstraint;
- - (id)initFromNib;
- @end
|