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/RuledScrollView.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

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