UzysGroupPickerViewController.h 704 B

1234567891011121314151617181920212223242526
  1. //
  2. // UzysGroupPickerViewController.h
  3. // UzysAssetsPickerController
  4. //
  5. // Created by Uzysjung on 2014. 2. 13..
  6. // Copyright (c) 2014년 Uzys. All rights reserved.
  7. //
  8. // 版权属于原作者
  9. // http://code4app.com(cn) http://code4app.net(en)
  10. // 来源于最专业的源码分享网站: Code4App
  11. #import <UIKit/UIKit.h>
  12. @interface UzysGroupPickerViewController : UIViewController
  13. @property (nonatomic,strong) UITableView *tableView;
  14. @property (nonatomic, strong) NSMutableArray *groups;
  15. @property (nonatomic,strong) UITapGestureRecognizer *tapGestureRecognizer;
  16. - (id)initWithGroups:(NSMutableArray *)groups;
  17. - (void)show;
  18. - (void)dismiss:(BOOL)animated;
  19. - (void)toggle;
  20. - (void)reloadData;
  21. @end