views:

32

answers:

0

Hello People, i am using AFOpenFlow in my app, but now the Problem is, the pictures I use are not the same size because they are from the web! And how can i autoResizing the image at the view of the iPhone??? Here is my code from this method:

- (void)viewDidLoad {
    [super viewDidLoad];

    // loading images into the queue

    loadImagesOperationQueue = [[NSOperationQueue alloc] init];


    NSString *imageName;
    for (int i=0; i < 10; i++) {
        imageName = [[NSString alloc] initWithFormat:@"cover_%d.jpg", i];
        [(AFOpenFlowView *)self.view setImage:[UIImage imageNamed:imageName] forIndex:i];
        [imageName release];
        NSLog(@"%d is the index",i);

    }
    [(AFOpenFlowView *)self.view setNumberOfImages:10];


}

Thank you beforehand Marco