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
Showing posts with label iPhone Image Photo Slide Show. Show all posts
Showing posts with label iPhone Image Photo Slide Show. Show all posts
Thursday, July 23, 2009
Subscribe to:
Posts (Atom)