'PBJVideoPlayer' is a simple iOS video player, featuring touch-to-play.
It supports both iOS 6 and iOS 7 as well as 64-bit, and is capable of playing local and remote video files.
Please review the release history for more information.
CocoaPods is the recommended method of installing PBJVideoPlayer, just to add the following line to your Podfile
:
pod 'PBJVideoPlayer'
#import "PBJVideoPlayerController.h"
// allocate controller
_videoPlayerController = [[PBJVideoPlayerController alloc] init];
_videoPlayerController.delegate = self; _videoPlayerController.view.frame = self.view.bounds;
// setup media
_videoPlayerController.videoPath = PBJViewControllerVideoPath;
// present
[self addChildViewController:_videoPlayerController];
[self.view addSubview:_videoPlayerController.view];
[_videoPlayerController didMoveToParentViewController:self];
'PBJVideoPlayer' is available under the MIT license, see the LICENSE file for more information.