Mercurial > hg > soniczoomios
view SliderViewController.mm @ 36:a42903c61558
Added sliderview (not operational though)
author | Robert Tubb <rt300@eecs.qmul.ac.uk> |
---|---|
date | Tue, 09 Apr 2013 13:22:28 +0100 |
parents | |
children | 8ed7522deaaa |
line wrap: on
line source
// // SliderViewController.m // sonicZoom // // Created by Robert Tubb on 01/02/2013. // // #import "SliderViewController.h" @interface SliderViewController () @end @implementation SliderViewController - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil { self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]; if (self) { // Custom initialization } return self; } - (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view from its nib. } - (void)didReceiveMemoryWarning { [super didReceiveMemoryWarning]; // Dispose of any resources that can be recreated. } - (void)setAppRef:(id)theOFApp{ self.theOFAppRef = theOFApp; } - (IBAction)show:(id)sender { self.theOFAppRef = sender; self.view.hidden = NO; } @end