我有一个自定义单元格,这是我的代码:
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *simpleTableIdentifier=@"ListTableCell";
//this is the identifier of the custom cell
ListsCell *cell = (ListsCell *)[tableView dequeueReusableCellWithIdentifier:simpleTableIdentifier];
if (cell == nil)
{
NSArray *nib = [[NSBundle mainBundle] loadNibNamed:@"ListsCell" owner:self options:nil];
cell = [nib objectAtIndex:0];
}
NSURL *url_left=[NSURL URLWithString:[images_url objectAtIndex:(indexPath.row*2)]];
cell.Left.image=[UIImage imageWithData:[NSData dataWithContentsOfURL:url_left]];
NSURL *url_right=[NSURL URLWithString:[images_url objectAtIndex:(indexPath.row*2+1)]];
cell.Right.image=[UIImage imageWithData:[NSData dataWithContentsOfURL:url_right]];
return cell;
}
网址很好,因为我在NSLog中将它们打印出来并且它们很好。此外,如果我从属性中放置静态图像,我可以看到它,我只能看到来自网络的图像。
如果没有任何关系,数组image_url通过解析json数组得到它的url。
同样在我的
- (void)connectionDidFinishLoading:(NSURLConnection *)connection {
... images_url filling with data.
[self.myTable.reloadData];
}
我重新加载数据。
为什么?
我也有这些方法:
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section
{
int i=[images_url count]/2;
return i;
}
- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath
{
return 81;
}
请勿在[图像数量] / 2中浪费时间。这是因为我在那里可以说10个网址,但由于在我的自定义单元格中每个单元格有2个图像视图,我需要5行。