我在iPhone应用程序开发新的,我需要在UITableView的帮助。 由于我是填充表视图使用JSON data.I我还使用自定义Tableviewcell也。 我没有得到的“lbluid”选定单元格的“huid”值。 该“lbluid”正显示出“huid”根据滚动,我会向上滚动,它会显示在UITableView中的最上层可见单元的“huid”值,如果我向下滚动,它会显示最后的“huid”价值的价值从下可见细胞。
- (UITableViewCell *)tableView:(UITableView *)tableView
cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier = @"SimpleTableCell";
SimpleTableCell *cell = (SimpleTableCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil) {
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"SimpleTableCell" owner:self options:nil];
cell = [nib objectAtIndex:0];;
}
NSUInteger row = [indexPath row];
cell.lbl4.text = [hudid objectAtIndex:row];
lbluid.text=cell.lbl4.text;
return cell;
}
Simpletablecell
是自定义UITableViewCell
。