aboutsummaryrefslogtreecommitdiffstats
path: root/Video Tuneup/ViewController.h
diff options
context:
space:
mode:
authorBrian Jordan2012-03-27 20:54:10 -0400
committerBrian Jordan2012-03-27 20:54:10 -0400
commit9ac7c867baf16a6cf1992956891e7a61503edb89 (patch)
tree4106f42d62aebee25042a6df49bb89117a55059f /Video Tuneup/ViewController.h
parentf1d5f1118a540bfc8ffe71be788fc355e75ad1a9 (diff)
downloadVideo-Tuneup-9ac7c867baf16a6cf1992956891e7a61503edb89.tar.bz2
video loading
Diffstat (limited to 'Video Tuneup/ViewController.h')
-rw-r--r--Video Tuneup/ViewController.h15
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