Ok the simplest answer would be something like this.
Use a UIimageview a uitextview and two buttons. Load your images into an array, same for your text strings; run this from ViewDidLoad. Code would go something like this:
Code:
imageTable=[[NSMutableArray alloc] init];
[imageTable addObject: @"image1.png"];
[imageTable addObject: @"image2.png"];
etc
Hook an IBaction to each of the buttons one to increment one to decrement.
Code would be like this (this would work for 9 images in the array, could probably recode it to use [array count] instead of a hardcoded value but it works):
Code:
- (IBAction)Increment_image:(id)sender{
if (imagenumber==8)
{
imagenumber=0;
}
imagenumber=imagenumber+1;
[partimage setImage:[UIImage imageNamed: [parttable objectAtIndex: imagenumber]]];
}
hopefully thats enough to get you started off.
Of course alternatively you could use a navigation controller with a different viewcontroller for each view, or subclass a viewcontroller with your UI elements in it and just call the new class each time you want to display a new slide but both are probably unnecessarily complex for your application..