UzysGroupPickerView.h 890 B

123456789101112131415161718192021222324252627
  1. //
  2. // UzysGroupPickerView.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. #import "UzysAssetsPickerController_Configuration.h"
  13. @interface UzysGroupPickerView : UIView<UITableViewDataSource,UITableViewDelegate,UIGestureRecognizerDelegate>
  14. @property (nonatomic,strong) UITableView *tableView;
  15. @property (nonatomic, strong) NSMutableArray *groups;
  16. @property (nonatomic,strong) UITapGestureRecognizer *tapGestureRecognizer;
  17. @property (nonatomic,copy) intBlock blockTouchCell;
  18. @property (nonatomic,assign) BOOL isOpen;
  19. - (id)initWithGroups:(NSMutableArray *)groups;
  20. - (void)show;
  21. - (void)dismiss:(BOOL)animated;
  22. - (void)toggle;
  23. - (void)reloadData;
  24. @end