12345678910111213141516171819202122232425262728293031323334353637383940 |
- //
- // SDPhotoBrowser.h
- // photobrowser
- //
- // Created by aier on 15-2-3.
- // Copyright (c) 2015年 aier. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @class SDButton, SDPhotoBrowser;
- @protocol SDPhotoBrowserDelegate <NSObject>
- @required
- - (UIImage *)photoBrowser:(SDPhotoBrowser *)browser placeholderImageForIndex:(NSInteger)index;
- @optional
- - (NSURL *)photoBrowser:(SDPhotoBrowser *)browser highQualityImageURLForIndex:(NSInteger)index;
- @end
- @interface SDPhotoBrowser : UIView <UIScrollViewDelegate>
- @property (nonatomic, weak) UIView *sourceImagesContainerView;
- @property (nonatomic, assign) NSInteger currentImageIndex;
- @property (nonatomic, assign) NSInteger imageCount;
- @property (nonatomic, weak) id<SDPhotoBrowserDelegate> delegate;
- - (void)show;
- @end
- // 版权属于原作者
- // http://code4app.com (cn) http://code4app.net (en)
- // 发布代码于最专业的源码分享网站: Code4App.com
|