equal
deleted
inserted
replaced
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 |