我想在我的表格視圖中使用圖片延遲加載概念。我的image rul字符串數組是(MSMutableArray
)「images」。我如何在cellForRowAtIndexPath
中執行此操作。圖片在表格視圖中的延遲加載
它看起來像:
-(UITableViewCell *) tableView:(UITableView *)AtableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
UITableViewCell *cell=[searchtable dequeueReusableCellWithIdentifier:@"cell"];
if(!cell)
{
cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:@"cell"];
cell.textLabel.font=[UIFont systemFontOfSize:12];
cell.imageView.image=[UIImage imageWithData:[NSData dataWithContentsOfURL:[NSURL URLWithString:[appSmallLogos objectAtIndex:indexPath.row]]]];
cell.detailTextLabel.text=[appReleaseDates objectAtIndex:indexPath.row];
}
return cell;
}
非常感謝好友..它的工作正常。 :) – user1573162
有一個快樂的編碼 –
可以請你告訴我,如何顯示活動指標,直到圖像不顯示在表視圖單元格? – user1573162