1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
spectogram-prototype/SpectogramPrototype/ViewController.h
2016-02-28 19:48:29 +00:00

22 lines
504 B
Objective-C

//
// ViewController.h
// SpectogramPrototype
//
// Created by Joshua Moerman on 21/12/13.
// Copyright (c) 2013 Joshua Moerman. All rights reserved.
//
#import <UIKit/UIKit.h>
@class RuledScrollView;
@interface ViewController : UIViewController
@property (nonatomic) IBOutlet RuledScrollView * scrollView;
@property (nonatomic) IBOutlet UIView * contentView;
- (IBAction)mediaButtonPressed:(UIButton*)sender;
- (IBAction)resetView:(id)sender;
- (IBAction)tuningChanged:(UISlider*)sender;
@end