cocoaTouch/GravesViewController.m
author koda
Tue, 13 Apr 2010 14:39:05 +0000
changeset 3339 d558bc5a73c5
child 3340 96dd168b080b
permissions -rw-r--r--
lots of untested stuff for the ifrontend
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3339
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     1
//
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     2
//  HogHatViewController.m
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     3
//  HedgewarsMobile
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     4
//
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     5
//  Created by Vittorio on 02/04/10.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     7
//
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     8
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
     9
#import "HogHatViewController.h"
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    10
#import "CommodityFunctions.h"
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    11
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    12
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    13
@implementation GravesViewController
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    14
@synthesize teamDictionary, graveArray, graveSprites, lastIndexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    15
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    16
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    17
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation) interfaceOrientation {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    18
	return rotationManager(interfaceOrientation);
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    19
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    20
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    21
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    22
#pragma mark -
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    23
#pragma mark View lifecycle
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    24
- (void)viewDidLoad {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    25
    [super viewDidLoad];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    26
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    27
    // load all the voices names and store them into voiceArray
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    28
    NSArray *array = [[NSFileManager defaultManager] contentsOfDirectoryAtPath:GRAVES_DIRECTORY() error:NULL];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    29
    self.graveArray = array;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    30
    [array release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    31
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    32
    NSMutableArray *sprites = [[NSMutableArray alloc] initWithCapacity:[graveArray count];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    33
    for (NSString *graveName in graveArray) {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    34
	NSString *gravePath = [[NSString alloc] initWithFormat@"%@/%@",GRAVES_DIRECTORY(),graveName];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    35
	UIImage *image = [[UIImage alloc] initWithContentsOfFile:gravePath];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    36
	[gravePath release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    37
	[sprites addObject:image];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    38
	[image release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    39
    }
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    40
    self.graveSprites = sprites;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    41
    [sprites release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    42
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    43
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    44
- (void)viewWillAppear:(BOOL)animated {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    45
    [super viewWillAppear:animated];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    46
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    47
    // this moves the tableview to the top
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    48
    [self.tableView setContentOffset:CGPointMake(0,0) animated:NO];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    49
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    50
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    51
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    52
- (void)viewDidAppear:(BOOL)animated {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    53
    [super viewDidAppear:animated];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    54
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    55
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    56
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    57
- (void)viewWillDisappear:(BOOL)animated {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    58
    [super viewWillDisappear:animated];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    59
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    60
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    61
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    62
- (void)viewDidDisappear:(BOOL)animated {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    63
    [super viewDidDisappear:animated];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    64
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    65
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    66
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    67
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    68
#pragma mark -
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    69
#pragma mark Table view data source
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    70
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    71
    return 1;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    72
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    73
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    74
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    75
    return [self.graveArray count];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    76
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    77
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    78
// Customize the appearance of table view cells.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    79
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    80
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    81
    static NSString *CellIdentifier = @"Cell";
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    82
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    83
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    84
    if (cell == nil) {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    85
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    86
    }
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    87
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    88
    NSString *grave = [[graveArray objectAtIndex:[indexPath row]] stringByDeletingPathExtension];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    89
    cell.textLabel.text = grave;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    90
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    91
    if ([grave isEqualToString:[hog objectForKey:@"grave"]]) {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    92
        cell.accessoryType = UITableViewCellAccessoryCheckmark;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    93
        self.lastIndexPath = indexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    94
    } else {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    95
        cell.accessoryType = UITableViewCellAccessoryNone;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    96
    }
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    97
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    98
    cell.imageView.image = [spriteArray objectAtIndex:[indexPath row]]:
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
    99
    return cell;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   100
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   101
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   102
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   103
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   104
// Override to support conditional editing of the table view.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   105
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   106
    // Return NO if you do not want the specified item to be editable.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   107
    return YES;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   108
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   109
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   110
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   111
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   112
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   113
// Override to support editing the table view.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   114
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   115
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   116
    if (editingStyle == UITableViewCellEditingStyleDelete) {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   117
        // Delete the row from the data source
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   118
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   119
    }   
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   120
    else if (editingStyle == UITableViewCellEditingStyleInsert) {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   121
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   122
    }   
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   123
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   124
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   125
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   126
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   127
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   128
// Override to support rearranging the table view.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   129
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   130
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   131
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   132
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   133
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   134
/*
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   135
// Override to support conditional rearranging of the table view.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   136
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   137
    // Return NO if you do not want the item to be re-orderable.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   138
    return YES;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   139
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   140
*/
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   141
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   142
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   143
#pragma mark -
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   144
#pragma mark Table view delegate
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   145
- (void)tableView:(UITableView *)aTableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   146
    int newRow = [indexPath row];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   147
    int oldRow = (lastIndexPath != nil) ? [lastIndexPath row] : -1;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   148
    
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   149
    if (newRow != oldRow) {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   150
	[teamDictionary setObject:[graveArray objectAtIndex:newRow] forKey:@"grave"];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   151
        
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   152
        // tell our boss to write this new stuff on disk
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   153
        [[NSNotificationCenter defaultCenter] postNotificationName:@"setWriteNeedTeams" object:nil];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   154
        [self.tableView reloadData];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   155
        
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   156
        self.lastIndexPath = indexPath;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   157
        [self.tableView selectRowAtIndexPath:indexPath animated:YES scrollPosition:UITableViewScrollPositionNone];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   158
     
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   159
    [self.tableView deselectRowAtIndexPath:indexPath animated:YES];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   160
    [self.navigationController popViewControllerAnimated:YES];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   161
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   162
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   163
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   164
#pragma mark -
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   165
#pragma mark Memory management
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   166
- (void)didReceiveMemoryWarning {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   167
    // Releases the view if it doesn't have a superview.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   168
    [super didReceiveMemoryWarning];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   169
    // Relinquish ownership any cached data, images, etc that aren't in use.
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   170
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   171
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   172
- (void)viewDidUnload {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   173
    [super viewDidUnload];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   174
    self.lastIndexPath = nil;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   175
    self.teamDictionary = nil;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   176
    self.graveArray = nil;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   177
    self.spriteArray = nil;
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   178
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   179
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   180
- (void)dealloc {
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   181
    [spriteArray release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   182
    [graveArray release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   183
    [teamDictionary release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   184
    [lastIndexPath release];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   185
    [super dealloc];
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   186
}
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   187
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   188
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   189
@end
d558bc5a73c5 lots of untested stuff for the ifrontend
koda
parents:
diff changeset
   190