I have this snippet in my ViewDidAppear()
photosImgView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"blueButton.png"],[UIImage imageNamed:@"slider_ball.png"],
[UIImage imageNamed:@"icon-small-50.png"], nil];
Here the images which are listed should be there in the bundle,its working correct but what i want is instead of taking the images from bundle to photosImgView . I want to take the images which are there in sqlite table with column name PPhotos to photosImgView to animate.
How can i do this any help would be greatly appreciated.