2
// tappityViewController.m
5
// Created by döme on 25.10.2009.
6
// Copyright __MyCompanyName__ 2009. All rights reserved.
9
#import "tappityViewController.h"
11
@implementation TappityViewController
16
// The designated initializer. Override to perform setup that is required before the view is loaded.
17
- (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil {
18
if (self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil]) {
19
// Custom initialization
26
// Implement loadView to create a view hierarchy programmatically, without using a nib.
33
// Implement viewDidLoad to do additional setup after loading the view, typically from a nib.
41
// Override to allow orientations other than the default portrait orientation.
42
- (BOOL)shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
43
// Return YES for supported orientations
44
return (interfaceOrientation == UIInterfaceOrientationPortrait);
48
- (void)didReceiveMemoryWarning {
49
// Releases the view if it doesn't have a superview.
50
[super didReceiveMemoryWarning];
52
// Release any cached data, images, etc that aren't in use.
55
- (void)viewDidUnload {
56
// Release any retained subviews of the main view.
57
// e.g. self.myOutlet = nil;