// // ChooseParentViewController.h // XFFruit // // Created by 陈俊俊 on 15/9/2. // Copyright (c) 2015年 Xummer. All rights reserved. // #import "ICRBaseViewController.h" #import "MaskCell.h" #import "MJRefresh.h" #define TopMargin 50 #define TableHeight 50 @interface ChooseParentViewController : ICRBaseViewController @property (nonatomic,assign) BOOL isMoreChose;//是否是多选 @property (nonatomic,strong)NSMutableArray *dataArr; @property (nonatomic,strong)NSMutableArray *indexArr; @property (nonatomic,strong)UITableView *tableView; @property (nonatomic,strong)UITextField *selectTextFiled; @property (nonatomic,assign) BOOL isRefresh; - (void)endRefreshing; - (void)getBaseDataFromLocal; - (BOOL)isHaveIndexPath:(NSIndexPath *)indexPath; @end