如何使用 iPad 访问我的照片库和摄像机
Posted
技术标签:
【中文标题】如何使用 iPad 访问我的照片库和摄像机【英文标题】:How do I access my photo gallery and video camera using iPad 【发布时间】:2015-06-02 08:37:13 【问题描述】:我在仅在 ios 8.3 中访问我的 iPad 上的照片和摄像机时遇到了困难。 iPhone代码没有问题。而且,此代码适用于 iOS 7 中的两种设备。目前不知道为什么会这样。当弹出窗口发生时,我选择“选择现有照片或视频”,没有其他任何反应。我确实设置了允许照片/视频库访问的应用程序权限。这是我的代码示例。有人遇到类似问题吗?
- (void)actionSheet:(UIActionSheet *)actionSheet clickedButtonAtIndex:(NSInteger)buttonIndex
if (buttonIndex != 2)
imagePickerController = [[UIImagePickerController alloc] init];
imagePickerController.allowsEditing = NO;
imagePickerController.delegate = self;
if (buttonIndex == 0)
imagePickerController.sourceType = UIImagePickerControllerSourceTypeCamera;
[self presentViewController:imagePickerController animated:YES completion:nil];
else
imagePickerController.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
if (UI_USER_INTERFACE_IDIOM() == UIUserInterfaceIdiomPad)
popover = [[UIPopoverController alloc] initWithContentViewController:imagePickerController];
[popover presentPopoverFromRect:CGRectMake(54.0f, 120.0f, 660.0f, 380.0f) inView:self.view permittedArrowDirections:UIPopoverArrowDirectionUp animated:YES];
else
[self presentViewController:imagePickerController animated:YES completion:nil];
【问题讨论】:
检查 popover 或 viewController 是否为 nil 我收到以下警告:尝试在您必须检查您的视图控制器是否为零。
【讨论】:
以上是关于如何使用 iPad 访问我的照片库和摄像机的主要内容,如果未能解决你的问题,请参考以下文章