How to create the slide show option for the photos in my application in iphone?

Posted by Warrior on Stack Overflow See other posts from Stack Overflow or by Warrior
Published on 2010-03-22T09:37:56Z Indexed on 2010/03/22 9:41 UTC
Read the original article Hit count: 306

Filed under:
|
|

I am new to iphone development.I want to create an application which shows the photos in the device.I have to implement the feature of slide show also.I am using UIImagePickerController to access the photos of the device. Here is my code

 - (void)viewDidLoad {

    self.navigationItem.title = @"Pictures";
self.navigationController.navigationBar.tintColor = [UIColor blackColor];
self.imgpicker = [[UIImagePickerController alloc] init];
self.imgpicker.allowsImageEditing = YES;
self.imgpicker.delegate = self;
self.imgpicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;

    [super viewDidLoad];
}

I am not able to see the slide show tool bar at the bottom of the photo list view.I am able to see the slide show tab bar, when i directly click on photos application on my device.How can i add the slide show tool bar in my application.Please help me out.Thanks.

© Stack Overflow or respective owner

Related posts about iphone

Related posts about photo-gallery