Skip to content

AndrewHartAR/PDMediaScrollView

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PDMediaScrollView

Full screen multimedia gallery from Journalized. Similar to the full screen view in the iPhone Photos app. Zoom and pan around images, swipe between media items, play videos.

http://ProjectDent.com/Journalized

Features:

  • Scroll through videos and images.
  • Pinch to zoom, pan around images.
  • Auto-showing and hiding navigation bar. Shows when you single tap on an image. Hides when you zoom and scroll between media items.
  • Threading support, to increase speed.
  • Auto resizing of images, as images larger than 1024 are slow and aren't designed to be used in a UIImage.
  • Play videos.
  • Landscape support
  • Automatic preview image generation for videos, if needed

Instructions:

  1. Add the MediaPlayer and QuartzCore framework to your project.
  2. Import the PDMediaViewController file.
  3. Use this code to init:
self.mediaVC = [[PDMediaViewController alloc] init]; self.mediaVC.mediaScrollView.mediaDelegate = self; self.mediaVC.mediaScrollView.currentMediaItem = 0;
self.mediaVC.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self presentModalViewController:self.mediaVC animated:YES];
  1. Respond to:

-(int)numberOfMediaItemsInMediaScrollView:(PDMediaScrollView *)mediaScrollView; -(PDMediaType)mediaScrollView:(PDMediaScrollView *)mediaScrollView mediaTypeForMediaAtIndex:(int)index; -(void)mediaScrollView:(PDMediaScrollView *)mediaScrollView shouldReceiveMediaAtIndex:(int)index withFirstPriority:(BOOL)firstPriority;

In response to FirstPriority, you should have something like this:

if (index == 3) { //Movie NSString *path = [[NSBundle mainBundle] pathForResource:@"movie" ofType:@"mp4"]; NSURL *movieURL = [NSURL fileURLWithPath:path];
    [self.mediaVC.mediaScrollView addMovie:movieURL atIndex:3];
}
else { //Images
    UIImage *image = [UIImage imageNamed:[NSString stringWithFormat:@"%i.jpg", index]];
    [self.mediaVC.mediaScrollView addImage:image atIndex:index];
}

In other words, find out what type of media is needed, and add it at the index it asked for. If firstPriority is NO, it means the app isn't looking at that view yet, and you can run the code in the background, if you wish to.

Notes:

It comes with UIImage extensions from here: http://vocaro.com/trevor/blog/2009/10/12/resize-a-uiimage-the-right-way/

If anybody knows any better code than this for resizing images then I'd be glad to swap them out.

Requires MediaPlayer framework and QuartzCore framework.

Comes with a play image. Feel free to switch it out with your own.

Known issues:

  • Images jump slightly on zoom out.
  • Occasional Positioning bugs.
  • Occiasional multiple views showing the same item.

About

Full screen multimedia gallery from Journalized. Similar to the full screen view in the iPhone Photos app. Zoom and pan around images, swipe between media items, play videos.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published