2009-09-08 7 views

Répondre

1

Je ne pense pas que vous puissiez le faire directement, via l'API. Mais vous pouvez simplement laisser le sélecteur ouvert et créer une liste d'images dans le rappel:

- (void) imagePickerController: (UIImagePickerController*) picker 
    didFinishPickingMediaWithInfo: (NSDictionary*) info 
{ 
    [images addObject:[info objectForKey:UIImagePickerControllerOriginalImage]]; 
    // There has to be some exit condition, 
    // otherwise the user would pick forever. 
    if ([images count] == 3) 
     [self dismissModalViewControllerAnimated:YES]; 
} 
Questions connexes