2009-09-08 5 views

답변

1

API를 통해 직접 처리 할 수 ​​있다고 생각하지 않습니다. 하지만 피커를 열어 놓고 콜백에 이미지 목록을 만들면됩니다.

- (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]; 
} 
관련 문제