Skip to content

SYPhotoBrowser 简单的 快速集成的图片浏览器,支持本地和网络图片

Notifications You must be signed in to change notification settings

LeoSsy/SYPhotoBrowser

Repository files navigation

使用方法

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];

About

SYPhotoBrowser 简单的 快速集成的图片浏览器,支持本地和网络图片

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published