project_files/HedgewarsMobile/Classes/StatsPageViewController.m
changeset 5982 283be2ca54a7
parent 5976 306cedbeb213
child 6000 dbcebcd3d79f
equal deleted inserted replaced
5981:bb7e1a417819 5982:283be2ca54a7
    72 -(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    72 -(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    73     static NSString *CellIdentifier0 = @"Cell0";
    73     static NSString *CellIdentifier0 = @"Cell0";
    74     NSInteger section = [indexPath section];
    74     NSInteger section = [indexPath section];
    75     NSInteger row = [indexPath row];
    75     NSInteger row = [indexPath row];
    76     NSString *imgName = @"";
    76     NSString *imgName = @"";
    77     NSString *imgPath = BTN_DIRECTORY();
    77     NSString *imgPath = ICONS_DIRECTORY();
    78 
    78 
    79     UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier0];
    79     UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier0];
    80     if (cell == nil)
    80     if (cell == nil)
    81         cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier0] autorelease];
    81         cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier0] autorelease];
    82 
    82