cocoaTouch/iPad/SingleTeamViewController.m
author koda
Fri, 02 Apr 2010 15:08:43 +0000
changeset 3251 221c163ad5d9
parent 3250 d5cd1a617123
child 3253 b0b1b1310b7e
permissions -rw-r--r--
continue working for team support on the ifrontend
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     1
//
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     2
//  SingleTeamViewController.m
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     3
//  HedgewarsMobile
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     4
//
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     5
//  Created by Vittorio on 02/04/10.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     6
//  Copyright 2010 __MyCompanyName__. All rights reserved.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     7
//
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     8
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
     9
#import "SingleTeamViewController.h"
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    10
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    11
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    12
@implementation SingleTeamViewController
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    13
@synthesize secondaryItems;
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    14
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    15
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    16
#pragma mark -
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    17
#pragma mark View lifecycle
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    18
- (void)viewDidLoad {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    19
    [super viewDidLoad];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    20
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    21
    // Uncomment the following line to preserve selection between presentations.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    22
    self.clearsSelectionOnViewWillAppear = NO;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    23
 
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    24
    // Uncomment the following line to display an Edit button in the navigation bar for this view controller.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    25
    // self.navigationItem.rightBarButtonItem = self.editButtonItem;
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    26
    
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    27
    NSMutableArray *array = [[NSMutableArray alloc] initWithObjects:
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    28
                             NSLocalizedString(@"Color",@""),
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    29
                             NSLocalizedString(@"Grave",@""),
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    30
                             NSLocalizedString(@"Voice",@""),
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    31
                             NSLocalizedString(@"Fort",@""),
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    32
                             NSLocalizedString(@"Flag",@""),
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    33
                             NSLocalizedString(@"Level",@""),nil];
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    34
    self.secondaryItems = array;
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    35
    [array release];
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    36
}
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    37
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    38
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    39
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    40
- (void)viewWillAppear:(BOOL)animated {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    41
    [super viewWillAppear:animated];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    42
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    43
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    44
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    45
- (void)viewDidAppear:(BOOL)animated {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    46
    [super viewDidAppear:animated];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    47
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    48
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    49
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    50
- (void)viewWillDisappear:(BOOL)animated {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    51
    [super viewWillDisappear:animated];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    52
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    53
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    54
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    55
- (void)viewDidDisappear:(BOOL)animated {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    56
    [super viewDidDisappear:animated];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    57
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    58
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    59
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    60
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    61
-(BOOL) shouldAutorotateToInterfaceOrientation:(UIInterfaceOrientation)interfaceOrientation {
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    62
    // Override to allow orientations other than the default portrait orientation.
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    63
    return (interfaceOrientation == UIInterfaceOrientationLandscapeRight);
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    64
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    65
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    66
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    67
#pragma mark -
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    68
#pragma mark Table view data source
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    69
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    70
-(NSInteger) numberOfSectionsInTableView:(UITableView *)tableView {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    71
    // Return the number of sections.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    72
    return 3;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    73
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    74
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    75
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    76
-(NSInteger) tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    77
    // Return the number of rows in the section.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    78
    NSInteger rows;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    79
    switch (section) {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    80
        case 0:
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    81
            rows = 1;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    82
            break;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    83
        case 1:
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    84
            rows = 8;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    85
            break;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    86
        case 2:
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    87
            rows = 6;
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    88
            break;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    89
        default:
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    90
            break;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    91
    }
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    92
    return rows;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    93
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    94
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    95
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    96
// Customize the appearance of table view cells.
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
    97
-(UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    98
    
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
    99
    static NSString *CellIdentifier = @"Cell";
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   100
    
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   101
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   102
    if (cell == nil) {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   103
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   104
    }
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   105
    
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   106
    switch ([indexPath section]) {
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   107
        case 2:
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   108
            cell.textLabel.text = [self.secondaryItems objectAtIndex:[indexPath row]];
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   109
            break;
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   110
        default:
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   111
            break;
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   112
    }
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   113
    
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   114
    return cell;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   115
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   116
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   117
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   118
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   119
// Override to support conditional editing of the table view.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   120
- (BOOL)tableView:(UITableView *)tableView canEditRowAtIndexPath:(NSIndexPath *)indexPath {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   121
    // Return NO if you do not want the specified item to be editable.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   122
    return YES;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   123
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   124
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   125
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   126
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   127
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   128
// Override to support editing the table view.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   129
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   130
    
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   131
    if (editingStyle == UITableViewCellEditingStyleDelete) {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   132
        // Delete the row from the data source
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   133
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:YES];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   134
    }   
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   135
    else if (editingStyle == UITableViewCellEditingStyleInsert) {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   136
        // Create a new instance of the appropriate class, insert it into the array, and add a new row to the table view
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   137
    }   
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   138
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   139
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   140
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   141
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   142
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   143
// Override to support rearranging the table view.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   144
- (void)tableView:(UITableView *)tableView moveRowAtIndexPath:(NSIndexPath *)fromIndexPath toIndexPath:(NSIndexPath *)toIndexPath {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   145
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   146
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   147
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   148
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   149
/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   150
// Override to support conditional rearranging of the table view.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   151
- (BOOL)tableView:(UITableView *)tableView canMoveRowAtIndexPath:(NSIndexPath *)indexPath {
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   152
    // Return NO if you do not want the item to be re-orderable.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   153
    return YES;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   154
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   155
*/
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   156
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   157
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   158
#pragma mark -
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   159
#pragma mark Table view delegate
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   160
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   161
-(void) tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   162
    // Navigation logic may go here. Create and push another view controller.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   163
	/*
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   164
	 <#DetailViewController#> *detailViewController = [[<#DetailViewController#> alloc] initWithNibName:@"<#Nib name#>" bundle:nil];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   165
     // ...
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   166
     // Pass the selected object to the new view controller.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   167
	 [self.navigationController pushViewController:detailViewController animated:YES];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   168
	 [detailViewController release];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   169
	 */
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   170
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   171
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   172
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   173
#pragma mark -
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   174
#pragma mark Memory management
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   175
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   176
-(void) didReceiveMemoryWarning {
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   177
    // Releases the view if it doesn't have a superview.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   178
    [super didReceiveMemoryWarning];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   179
    
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   180
    // Relinquish ownership any cached data, images, etc that aren't in use.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   181
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   182
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   183
-(void) viewDidUnload {
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   184
    self.secondaryItems = nil;
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   185
    // Relinquish ownership of anything that can be recreated in viewDidLoad or on demand.
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   186
    // For example: self.myOutlet = nil;
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   187
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   188
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   189
3251
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   190
-(void) dealloc {
221c163ad5d9 continue working for team support on the ifrontend
koda
parents: 3250
diff changeset
   191
    [secondaryItems release];
3250
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   192
    [super dealloc];
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   193
}
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   194
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   195
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   196
@end
d5cd1a617123 intial support for team configuration on the ifrontend
koda
parents:
diff changeset
   197