// // UzysGroupPickerViewController.h // UzysAssetsPickerController // // Created by Uzysjung on 2014. 2. 13.. // Copyright (c) 2014년 Uzys. All rights reserved. // // 版权属于原作者 // http://code4app.com(cn) http://code4app.net(en) // 来源于最专业的源码分享网站: Code4App #import @interface UzysGroupPickerViewController : UIViewController @property (nonatomic,strong) UITableView *tableView; @property (nonatomic, strong) NSMutableArray *groups; @property (nonatomic,strong) UITapGestureRecognizer *tapGestureRecognizer; - (id)initWithGroups:(NSMutableArray *)groups; - (void)show; - (void)dismiss:(BOOL)animated; - (void)toggle; - (void)reloadData; @end