I have an array containing image URLs, i want to create an image view with those urls(now with for loop).
But i am not getting an idea,how to make image view with URLs in the array Hope some will clarify this
int x = 0;
for(int i = 0; i <imagearry.count; i ++){
NSDictionary *dict = [imagearry objectAtIndex:i];
NSLog(@"%@",[dict objectForKey:@"img_url"]);
NSString *filePath [NSHomeDirectory()stringByAppendingPathComponent:@"/Library/Caches"];
stringarry = [[imagearry objectAtIndex:i] objectForKey:@"img_url"];
int x = 0;
imageView.image = [UIImage imageNamed:[stringarry objectAtIndex:0]];
for(int i=0; i < [stringarry count]; i++)
{
UIImageView *img = [[UIImageView alloc] init];
img.bounds = CGRectMake(10, 10, 50, 50);
img.frame = CGRectMake(5+x, 0, 160, 110);
NSLog(@"image: %@",[stringarry objectAtIndex:i]);
img.image = [UIImage imageNamed:[stringarry objectAtIndex:i]];
[stringarry insertObject:img atIndex:i];
[scrollView addSubview:[stringarry objectAtIndex:i]];
x += 170;