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
Joshua Moerman 75f469885d First stubs:
- View with rulers
- FFT with Accelerated framework
- Opening music from iTunes (almost)
TODO: ducktape things together
2013-12-26 11:03:48 +01:00

21 lines
474 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) calculateButtonPressed:(id)sender;
- (IBAction) mediaButtonPressed:(UIButton*)sender;
@end