首页 > 代码库 > 一款简洁实用方便的相册图片浏览器
一款简洁实用方便的相册图片浏览器
因为项目中经常要用到图片浏览器,所以最近利用空闲时间做了一款简洁的相册图片浏览器,支持浏览图片,视频,兼容ios7。地址:https://github.com/shushaoyong/SYPhotoBrowser
下面是示例代码:
使用方法 1.展示图片 SYPhotoGroupViewController *vc = [[SYPhotoGroupViewController alloc] init]; vc.videoEnabled = NO; vc.didFinishcompletionBlock = ^(NSArray *items) { NSLog(@"选择的图片:%@",items); }; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc]; [self presentViewController:nav animated:YES completion:nil]; 2.展示视频 SYPhotoGroupViewController *vc = [[SYPhotoGroupViewController alloc] init]; vc.videoEnabled = YES; vc.didFinishcompletionBlock = ^(NSArray *items) { NSLog(@"选择的视频:%@",items); }; UINavigationController *nav = [[UINavigationController alloc] initWithRootViewController:vc]; [self presentViewController:nav animated:YES completion:nil];
更多效果 请进入github查看:
地址:https://github.com/shushaoyong/SYPhotoBrowser
一款简洁实用方便的相册图片浏览器
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。