equal
deleted
inserted
replaced
112 return [[self.dataSourceArray objectAtIndex:scIndex] count]; |
112 return [[self.dataSourceArray objectAtIndex:scIndex] count]; |
113 } |
113 } |
114 |
114 |
115 -(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
115 -(UITableViewCell *)tableView:(UITableView *)aTableView cellForRowAtIndexPath:(NSIndexPath *)indexPath { |
116 static NSString *CellIdentifier = @"Cell"; |
116 static NSString *CellIdentifier = @"Cell"; |
117 NSInteger row = [indexPath row]; |
117 NSUInteger row = [indexPath row]; |
118 |
118 |
119 UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
119 UITableViewCell *cell = [aTableView dequeueReusableCellWithIdentifier:CellIdentifier]; |
120 if (cell == nil) |
120 if (cell == nil) |
121 cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
121 cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease]; |
122 |
122 |