Play a video using an array of images in iPhone Objective C

When you want to play a video using an array of images in iPhone,


you need to run the array of images in a loop and assign the images to the UIImageView.


UIImageView *imageView = [[UIImageView alloc] initWithFrame:frame];
for (int i = 0; i < [array count]; i++)
{
      imageView.image = (UIImage *) [array objectAtIndex: i];
}



Comments

Popular posts from this blog

Connect Samsung devices to Kies on Mac

Integrating ZXing QR Code reader in iPhone / iOS applications

Multiple line of text in UIPickerView