我正试图使用以下密码进入照片集。 它在我的Piche或iPad, 低于4.0版。
- (void)BrowsePhotoLibrary:(id)sender {
NSArray *types = [UIImagePickerController availableMediaTypesForSourceType:
UIImagePickerControllerSourceTypePhotoLibrary];
if ([types containsObject:(id)kUTTypeMovie])
{
UIImagePickerController *imgPickerController = [[[UIImagePickerController alloc] init] autorelease];
imgPickerController.delegate = self;
imgPickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
imgPickerController.mediaTypes = [NSArray arrayWithObject:(id)kUTTypeMovie];
[self presentModalViewController:imgPickerController animated:YES];
iii
iii
如果照片集有一只照片,如果照片集有任何录像,则IPad 2,4.3版本的同一密码坠毁,则该密码向照片集发射。 难道有人会就此提出什么理由?