tags:

views:

53

answers:

1

hello, i am new to iphone programming, i want to put multiple images for slideview..and for that i want to declare it by array and use it in same viewcontroller class..so anybody can tell me how to declare the array of images in a class and display

A: 
NSArray *images = [NSArray arrawWithObjects:
                   [UIImage imageNamed:@"1.png"],
                   [UIImage imageNamed:@"2.png"],
                   [UIImage imageNamed:@"3.png"],
                   [UIImage imageNamed:@"4.png"],
                   nil];
Ole Begemann
hay thank for the help...i tried this code but it couldn't work...actually i want 5 images view in scrollview with zooming and tapping so can u help me on that? i ll b thankful to you for this help
prashant solanki
can anybody explain how can i zoom images by tapping when that images are stored in a array..i have searched that if there are more images for zoom and tapping then it requires multiple subviews so it would be appreciated if anybody can give suggetion
prashant solanki