SDPhotoBrowser.h 992 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. //
  2. // SDPhotoBrowser.h
  3. // photobrowser
  4. //
  5. // Created by aier on 15-2-3.
  6. // Copyright (c) 2015年 aier. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @class SDButton, SDPhotoBrowser;
  10. @protocol SDPhotoBrowserDelegate <NSObject>
  11. @required
  12. - (UIImage *)photoBrowser:(SDPhotoBrowser *)browser placeholderImageForIndex:(NSInteger)index;
  13. @optional
  14. - (NSURL *)photoBrowser:(SDPhotoBrowser *)browser highQualityImageURLForIndex:(NSInteger)index;
  15. - (void)photoBrowser:(SDPhotoBrowser *)browser selectIndex:(NSInteger)index;
  16. @end
  17. @interface SDPhotoBrowser : UIView <UIScrollViewDelegate>
  18. @property (nonatomic, weak) UIView *sourceImagesContainerView;
  19. @property (nonatomic, assign) int currentImageIndex;
  20. @property (nonatomic, assign) NSInteger imageCount;
  21. @property (nonatomic, weak) id<SDPhotoBrowserDelegate> delegate;
  22. - (void)show;
  23. @end
  24. // 版权属于原作者
  25. // http://code4app.com (cn) http://code4app.net (en)
  26. // 发布代码于最专业的源码分享网站: Code4App.com