blob: 61f34eb21864772a5f477a071c1cfc9886d04d0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
//
// PlayerView.h
// Video Tuneup
//
// Created by Brian Jordan on 3/27/12.
// Copyright (c) 2012 __MyCompanyName__. All rights reserved.
//
#import <UIKit/UIKit.h>
#import <AVFoundation/AVFoundation.h>
@interface PlayerView : UIView {
}
@property (nonatomic, retain) AVPlayer *player;
@end
|