码迷,mamicode.com
首页 > 其他好文 > 详细

一款简洁实用方便的相册图片浏览器

时间:2017-05-08 14:35:58      阅读:148      评论:0      收藏:0      [点我收藏+]

标签:com   nbsp   href   github   代码   视频   bsp   nsarray   enabled   

因为项目中经常要用到图片浏览器,所以最近利用空闲时间做了一款简洁的相册图片浏览器,支持浏览图片,视频,兼容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

 

一款简洁实用方便的相册图片浏览器

标签:com   nbsp   href   github   代码   视频   bsp   nsarray   enabled   

原文地址:http://www.cnblogs.com/syios/p/6824392.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!