- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier [email protected]"imageCell";
UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
NSData *imageData =UIImagePNGRepresentation([UIImage imageNamed:@"inbox.png"]);
PFObject *almacen = [_browserImagenes objectAtIndex:indexPath.row];
PFFile *archivo = almacen [@"image"];
[archivo getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
if (!error) {
UIImage *image = [UIImage imageWithData:imageData];
}
}];
return cell;
}
-4
A
回答
0
寫這樣的代碼在你的UITableView的cellForRowAtIndexPath方法...
PFFile *鏡像文件= [[yourArray objectAtIndex:indexPath.row] valueForKey:@ 「yourColumnName」];
if (imageFile) {
self.imageView.file = imageFile;
[self.imageView loadInBackground:^(UIImage *image, NSError *error) {
}];
}
+0
爲此使用PFImageView – 2014-10-03 10:42:47
0
您需要將下載的圖像分配給您忘記的單元格的UIImageView。我已經修改你的代碼如下。
- (UITableViewCell *)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath
{
static NSString *CellIdentifier [email protected]"imageCell";
UITableViewCell *cell =[tableView dequeueReusableCellWithIdentifier:CellIdentifier forIndexPath:indexPath];
NSData *imageData =UIImagePNGRepresentation([UIImage imageNamed:@"inbox.png"]);
PFObject *almacen = [_browserImagenes objectAtIndex:indexPath.row];
PFFile *archivo = almacen [@"image"];
[archivo getDataInBackgroundWithBlock:^(NSData *data, NSError *error) {
if (!error) {
UIImage *image = [UIImage imageWithData:imageData];
// *** Here you need to set image to imageview to display it ***
cell.imageView.image = image;
}
}];
return cell;
}
相關問題
- 1. 無法找到上傳圖像解析
- 2. 將圖像上傳到解析失敗
- 3. 將許多圖像上傳到解析
- 4. 從UITableView網站解析圖像
- 5. 傳遞UITableView的解析XML
- 6. 未知異常,同時試圖上傳圖像解析
- 7. 從Picker上解析圖片上傳
- 8. 將多個圖像上傳到解析服務Android Java
- 9. 上傳/保存選定的圖像與解析作爲後端
- 10. 拍攝照片後上傳圖像進行解析
- 11. 如何將圖像上傳到解析在android中?
- 12. 如何上傳選擇的圖像來解析對象?
- 13. Swift 3上傳圖像到解析服務器
- 14. 如何使用解析服務器從s3上傳圖像
- 15. 解析由於圖像文件大小而無法上傳圖像
- 16. 上傳文件(圖片)解析
- 17. 使用解析API上傳圖片
- 18. 解析JSON圖像
- 19. NSXML解析圖像
- 20. UITableView和解析 - laggy
- 21. 解析XML到UITableView
- 22. 在UITableVIew加載之前從解析中檢索圖像?
- 23. iOS XML解析在UItableview中獲取圖像
- 24. UITableView Cell上的圖像
- 25. 解析圖像座標上的座標
- 26. 將Wordpress JSON解析爲iOS上的UITableView
- 27. JSON解析:在UITableView上顯示數據
- 28. 解碼base64圖像並上傳
- 29. 將圖像解析爲多個圖像
- 30. CSV上傳Rails中解析
這裏你想要什麼,請解釋清楚。你想要異步加載圖像嗎? – 2014-09-20 21:55:20
是的。我的圖像存儲在Parse.com – 2014-09-20 22:03:01
所以你想要在tableview中顯示這些圖像? – 2014-09-20 22:05:27