KKImageBrowser

这是一个非常有用的图片浏览工具。(仿微信图片预览)

2020年的代码吧,其时是在做自己的项目。然后看到微信预览图片的作用挺酷的,就仿了一个出来。现在整理出来把他传到GitHub,供我们参阅和运用。

作用

KKImageBrowser 这是一个非常实用的图片浏览工具。(仿微信图片预览)
KKImageBrowser 这是一个非常实用的图片浏览工具。(仿微信图片预览)
KKImageBrowser 这是一个非常实用的图片浏览工具。(仿微信图片预览)

依靠

KKImageBrowser依靠SDWebImage。

如何运用

1、首要Podfile导入

#主张在运用的时候指定版别号
pod 'KKImageBrowser', '~> 0.1.3'

2、工程运用

//首要导入头文件 #import <KKImageBrowser/KKImageBrowser.h>
    NSMutableArray *images = [[NSMutableArray alloc] init];
    for (int i = 0; i < self.datum.count; i ++) {
        NSString *imageString = self.datum[i];
        NSIndexPath *index = [NSIndexPath indexPathForRow:i inSection:0];
        UICollectionViewCell *cell = [collectionView cellForItemAtIndexPath:index];
        KKImageBrowserModel *model = [[KKImageBrowserModel alloc] initWithURL:[NSURL URLWithString:imageString] toView:cell];
        [images addObject:model];
    }
    KKImageBrowser *vc = [[KKImageBrowser alloc] init];
    vc.images = images;
    vc.index = indexPath.row;
    [self presentViewController:vc animated:NO completion:nil];

更新

2021.11.18  0.1.3版别,完善基本功能
2021.11.18  0.1.2版别,调整代码接口【不主张运用此版别】
2021.11.18  0.1.1版别,上传代码相关【不主张运用此版别】
2021.11.16  0.1.0版别,新的版别从这儿开始【不主张运用此版别】