0
 NSDictionary *temp = [self.placeArray objectAtIndex:[indexPath row]];
cell.textLabel.text = [temp objectForKey:@"name"];
UILabel *detailLbl = [[UILabel alloc]initWithFrame:CGRectMake(250,0,200,50)];
[detailLbl setText:[temp objectForKey:@"distance"]];
[cell.contentView addSubview:detailLbl];
 cell.imageView.image =[UIImage imageNamed:[temp objectForKey:@"category"]];

最後の行で画像を設定しましたが、画像を表示できるようにします。これで私を助けてください。また、セグエができないこともできます。

4

3 に答える 3

0

このようにしてみてください

 NSString *imgUrl = @"";  //enter your url here  
NSData *data = [NSData dataWithContentsOfURL:[NSURL URLWithString:imgUrl]];
UIImage *img = [UIImage imageWithData:data];
cell.imageView.image = img;
于 2013-11-07T09:10:45.207 に答える