iosuibuttonmwphotobrowser

add a play button in MWPhotoBrowser for video play


I'm using MWPhotoBrowser in which photos and videos are shown in gridview as thumb. and shows full size image. It works fine for image view.

I have applied code for video play in

- (void)photoBrowser:(MWPhotoBrowser *)photoBrowser didDisplayPhotoAtIndex:(NSUInteger)index

method to play video.In which MPMoviePlayerViewController is used to play video. It will play video directly when video image displays

I want to apply video play button to play video by user interaction. If there is any possible way to do that then please suggest. Thanks in advance.


Solution

  • This is not possible with the current available delegates methods, so I've made the one for my own use in my app, here you go.

    Step 1:

    Look for this file, MWPhotoBrowser.h

    Under the delegate declarations, i.e. under this @protocol MWPhotoBrowserDelegate <NSObject>

    add one more delegate, - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser didSelectedPhotoAtIndex:(NSUInteger)selectedPhotoIndex; I make it optional.

    Also, declare this function too, - (void) singleTapOnCurrentPhoto;

    Step 2:

    Now open, MWPhotoBrowser.m make a definition of, - (void) singleTapOnCurrentPhoto like this,

    - (void) singleTapOnCurrentPhoto {
        if(self.delegate && [self.delegate respondsToSelector:@selector(photoBrowser:didSelectedPhotoAtIndex:)]) {
            [self.delegate photoBrowser:self didSelectedPhotoAtIndex:self.currentIndex];
        }
    }
    

    Step 3:

    Now look for this file, MWZoomingScrollView.m

    find this method, - (void)handleSingleTap:(CGPoint)touchPoint;

    update it like this,

    - (void)handleSingleTap:(CGPoint)touchPoint {
        [_photoBrowser performSelector:@selector(singleTapOnCurrentPhoto)];
        [_photoBrowser performSelector:@selector(toggleControls) withObject:nil afterDelay:0.2];
    }
    

    Step 4:

    You're done! You can use it in your UIViewController class like this,

    - (void)photoBrowser:(MWPhotoBrowser *)photoBrowser didSelectedPhotoAtIndex:(NSUInteger)selectedPhotoIndex {
        NSLog(@"Photo tapped at index %lu",(unsigned long)selectedPhotoIndex);
    }
    

    Understanding of each steps: