2020年的代码吧,当时是在做自己的项目。然后看到微信预览图片的效果挺酷的,就仿了一个出来。现在整理出来把他传到GitHub,供大家参考和使用。
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];
QQ:[email protected] GitHub:https://github.com/HansenCCC tel:13767141841
1、iOS实现HTML H5秒开、拦截请求替换资源、优化HTML加载速度
2、超级签名中最重要的一步:跳过双重认证,自动化脚本添加udid并下载描述文件(证书和bundleid不存在时,会自动创建)
3、脚本自动化批量修改ipa的icon、启动图、APP名称等(demo只修改icon,其他原理一样)、重签ipa
5、KKFileBrowser 快速预览本地文件(可以查看数据库)
6、KKImageBrowser 图片预览功能(仿微信图片预览)
2021.11.18 0.1.3版本,完善基本功能
2021.11.18 0.1.2版本,调整代码接口【不建议使用此版本】
2021.11.18 0.1.1版本,上传代码相关【不建议使用此版本】
2021.11.16 0.1.0版本,新的版本从这里开始【不建议使用此版本】