diff options
| author | Brian Jordan | 2012-03-27 20:54:10 -0400 |
|---|---|---|
| committer | Brian Jordan | 2012-03-27 20:54:10 -0400 |
| commit | 9ac7c867baf16a6cf1992956891e7a61503edb89 (patch) | |
| tree | 4106f42d62aebee25042a6df49bb89117a55059f /Video Tuneup/ViewController.h | |
| parent | f1d5f1118a540bfc8ffe71be788fc355e75ad1a9 (diff) | |
| download | Video-Tuneup-9ac7c867baf16a6cf1992956891e7a61503edb89.tar.bz2 | |
video loading
Diffstat (limited to 'Video Tuneup/ViewController.h')
| -rw-r--r-- | Video Tuneup/ViewController.h | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/Video Tuneup/ViewController.h b/Video Tuneup/ViewController.h index 2bb4491..9a39837 100644 --- a/Video Tuneup/ViewController.h +++ b/Video Tuneup/ViewController.h @@ -7,7 +7,18 @@ // #import <UIKit/UIKit.h> +#import <AVFoundation/AVFoundation.h> -@interface ViewController : UIViewController +@class PlayerView; -@end +@interface ViewController : UIViewController { +} + +@property (nonatomic, retain) AVPlayer *player; +@property (retain) AVPlayerItem *playerItem; +@property (nonatomic, retain) IBOutlet PlayerView *playerView; +@property (nonatomic, retain) IBOutlet UIButton *playButton; +- (IBAction)loadAssetFromFile:sender; +- (IBAction)play:sender; +- (void)syncUI; +@end
\ No newline at end of file |
