diff options
| author | Brian Jordan | 2012-03-28 13:30:16 -0400 |
|---|---|---|
| committer | Brian Jordan | 2012-03-28 13:30:16 -0400 |
| commit | ec944d9869a74f11f565d8aacc4d822cd8e7a8fd (patch) | |
| tree | 730b29f2803c068671d9567cf0273b70564435cf /Video Tuneup/ViewController.m | |
| parent | 6276c3004552d250d0fc22df975b9c29ea1f6884 (diff) | |
| download | Video-Tuneup-ec944d9869a74f11f565d8aacc4d822cd8e7a8fd.tar.bz2 | |
add open song button. Closes #5
Diffstat (limited to 'Video Tuneup/ViewController.m')
| -rw-r--r-- | Video Tuneup/ViewController.m | 6 |
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 { |
