I did Get images for Url.and then display on SCrollView.My code like this
NSMutableArray *al=[NSJSONSerialization JSONObjectWithData:webData options:0 error:nil];
for (NSDictionary *diction in al)
{
NSString *geting =[diction valueForKey:@"dealimage"];
NSLog(@"dealimage is %@",geting);
NSData *getdata=[[NSData alloc]initWithData:[NSData dataFromBase64String:geting]];
NSLog(@"good day %@",getdata);
dataimages=[UIImage imageWithData:getdata];
NSLog(@"dataimages %@",dataimages);
[imagesarray addObject:dataimages];
}
scrollView=[[UIScrollView alloc]init];
scrollView.delegate = self;
scrollView.scrollEnabled = YES;
int scrollWidth = 100;
scrollView.contentSize = CGSizeMake(scrollWidth,100);
scrollView.frame=CGRectMake(0, 0, 320, 100);
scrollView.backgroundColor=[UIColor yellowColor];
[self.view addSubview:scrollView];
int xOffset = 0;
imageView.image = [UIImage imageNamed:[imagesName objectAtIndex:0]];
for(int index=0; index < [imagesName count]; index++)
{
UIImageView *img = [[UIImageView alloc] init];
img.bounds = CGRectMake(10, 10, 50, 50);
img.frame = CGRectMake(5+xOffset, 0, 160, 110);
NSLog(@"image: %@",[imagesName objectAtIndex:index]);
img.image = [UIImage imageNamed:[imagesName objectAtIndex:index]];
[images insertObject:img atIndex:index];
scrollView.contentSize = CGSizeMake(scrollWidth+xOffset,110);
[scrollView addSubview:[images objectAtIndex:index]];
xOffset += 170;
}
my Problem is ScrollView is Display but Images are not add So please tell me what wrong in my code
now i need like this
I know how to get images for Url.now i need display images Horizontal ScrollView So Please give me any idea about images .
Thanks in Advanced
For the desired outcome that is shown in the picture, ie, the horizontal scroll, Use ScrollView instead of tableview.
set the pane of scroll to horizontal and dynamically create imageview inside a loop and insert images inside it
hope it helps :)
your coding is Fine, but you are assign the value of
[scrollView addSubview:[images objectAtIndex:index]];
, this is not the fine one, I modify your code, as per your result WantInstead of using table view why don't you user UICollectionView with their delegates.
you can refer this - Creating a UICollectionView programmatically
It's best way to achieve your requirement.
"official" example created by Apple take a look at the StreetScroller Demo.