0

我有自定义单元格的 uitableview。

在单元格中,我有一些 UIImageViews。
我使用异步加载数据。
加载后,我应该在单元格中更新我的 uiimageview。

NSString *urlInString =[NSString stringWithFormat:@"%@/index.php/api/getJsonHotels?page=%i&rows_count=%i",webSite,counterPage,5];
    NSURLRequest *theRequest = [NSURLRequest requestWithURL:[NSURL URLWithString:urlInString]];

NSURLConnection *mConnect = [[NSURLConnection alloc] initWithRequest:theRequest delegate:self startImmediately:YES];
if(mConnect)
{
    dataContent = [NSMutableData new];
}
- (void)connectionDidFinishLoading:(NSURLConnection *)connection
- (void)connectionDidFinishLoading:(NSURLConnection *)connection

我可以在没有 tableView 重新加载和重新加载单元的情况下做到这一点吗?我该怎么做?

4

2 回答 2

0

试试这个代码:

[tableview reloadData];
于 2012-10-09T10:04:21.687 回答
0

创建一个 UIImageView 的自定义类并将其添加到您的单元格中。下载完成时,该类应负责下载和设置图像。

为了展示一些高质量的作品,您应该在下载时显示一个活动指示器。

于 2012-10-09T10:24:10.280 回答