How save images in home directory?
问题 I am making an application in which i have use Json parsing. With the help of json parsing i get photo url which is saved in string. To show images in my cell i use this code NSString *strURL=[NSString stringWithFormat:@"%@", [list_photo objectAtIndex:indexPath.row]]; NSData *imageData = [[NSData alloc] initWithContentsOfURL: [NSURL URLWithString: strURL]]; CGRect myImage =CGRectMake(13,5,50,50); UIImageView *imageView = [[UIImageView alloc] initWithFrame:myImage]; [imageView setImage: