diff --git a/AVPlayerOverlay.podspec b/AVPlayerOverlay.podspec index 5d6d3db..e635282 100644 --- a/AVPlayerOverlay.podspec +++ b/AVPlayerOverlay.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'AVPlayerOverlay' - s.version = '1.1' + s.version = '1.1.1' s.summary = 'AVPlayer with custom controls and full screen features.' s.license = 'MIT' s.ios.platform = '7.1' diff --git a/AVPlayerOverlay/AVPlayer/AVPlayerVC.m b/AVPlayerOverlay/AVPlayer/AVPlayerVC.m index aa1401b..593f017 100644 --- a/AVPlayerOverlay/AVPlayer/AVPlayerVC.m +++ b/AVPlayerOverlay/AVPlayer/AVPlayerVC.m @@ -18,9 +18,9 @@ @interface AVPlayerVC() @implementation AVPlayerVC -- (instancetype)init +- (instancetype)initWithCoder:(NSCoder *)aDecoder { - if (self = [super init]) { + if (self = [super initWithCoder:aDecoder]) { _overlayStoryboardId = @"AVPlayerOverlayVC"; }