Thursday, July 23, 2009

Creating Image - Photo Slideshow / iPhone Photo Album

Code to show images / photos in slide show as Photo Album using iPhone SDK / Cocoa / XCode:

NSArray *myPhotos = [NSArray arrayWithObjects:
[UIImage imageNamed:@"Photo1.gpeg"],
[UIImage imageNamed:@"Photo2.gpeg"],
[UIImage imageNamed:@"Photo3.gpeg"],
[UIImage imageNamed:@"Photo4.gpeg"],
nil];

UIImageView *myPhotoAlbumView = [UIImageView alloc];
[myPhotoAlbumView initWithFrame:[self bounds]];
myPhotoAlbumView.animationImages = myPhotos;
myPhotoAlbumView.animationDuration = 30; //Duration in seconds
myPhotoAlbumView.animationRepeatCount = 0; //0 (Zero) indicates infinite loop
[myPhotoAlbumView startAnimating];
[self addSubView:myPhotoAlbumView];
[myPhotoAlbumView release];

--Mitesh Mehta
miteshvmehta@gmail.com

No comments:

Post a Comment