Skip to content

Commit

Permalink
fix IBInspectable property
Browse files Browse the repository at this point in the history
  • Loading branch information
priore committed May 2, 2016
1 parent fdfcb7f commit 3e74c79
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion AVPlayerOverlay.podspec
Original file line number Diff line number Diff line change
@@ -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'
Expand Down
4 changes: 2 additions & 2 deletions AVPlayerOverlay/AVPlayer/AVPlayerVC.m
Original file line number Diff line number Diff line change
Expand Up @@ -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";
}
Expand Down

0 comments on commit 3e74c79

Please sign in to comment.