
- View with rulers - FFT with Accelerated framework - Opening music from iTunes (almost) TODO: ducktape things together
15 lines
384 B
Objective-C
15 lines
384 B
Objective-C
//
|
|
// RuledScrollView.h
|
|
// SpectogramPrototype
|
|
//
|
|
// Created by Joshua Moerman on 24/12/13.
|
|
// Copyright (c) 2013 Joshua Moerman. All rights reserved.
|
|
//
|
|
|
|
#import <UIKit/UIKit.h>
|
|
|
|
@interface RuledScrollView : UIScrollView
|
|
@property (nonatomic, readonly) UIView * content;
|
|
@property (nonatomic, readonly) UIView * topRuler;
|
|
@property (nonatomic, readonly) UIView * leftRuler;
|
|
@end
|