aboutsummaryrefslogtreecommitdiffstats
path: root/Video Tuneup/ViewController.m
diff options
context:
space:
mode:
authorBrian Jordan2012-03-28 13:30:16 -0400
committerBrian Jordan2012-03-28 13:30:16 -0400
commitec944d9869a74f11f565d8aacc4d822cd8e7a8fd (patch)
tree730b29f2803c068671d9567cf0273b70564435cf /Video Tuneup/ViewController.m
parent6276c3004552d250d0fc22df975b9c29ea1f6884 (diff)
downloadVideo-Tuneup-ec944d9869a74f11f565d8aacc4d822cd8e7a8fd.tar.bz2
add open song button. Closes #5
Diffstat (limited to 'Video Tuneup/ViewController.m')
-rw-r--r--Video Tuneup/ViewController.m6
1 files changed, 5 insertions, 1 deletions
diff --git a/Video Tuneup/ViewController.m b/Video Tuneup/ViewController.m
index b88a8f8..bd2a3b5 100644
--- a/Video Tuneup/ViewController.m
+++ b/Video Tuneup/ViewController.m
@@ -14,7 +14,7 @@ static const NSString *ItemStatusContext;
@implementation ViewController
-@synthesize player, playerItem, playerView, playButton, pauseButton;
+@synthesize player, playerItem, playerView, playButton, pauseButton, rewindButton;
#pragma mark - Video playback
@@ -78,6 +78,10 @@ static const NSString *ItemStatusContext;
}];
}
+- (IBAction)loadAudioFromFile:(id)sender {
+ NSLog(@"Loading audio from file");
+}
+
- (void)observeValueForKeyPath:(NSString *)keyPath ofObject:(id)object
change:(NSDictionary *)change context:(void *)context {