- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遵循了一个很棒的教程( http://iphone.zcentric.com/2008/08/28/using-a-uiimagepickercontroller/ ),使用 UIImagePickerController 从 iPhone 上的相册或相机获取图像。问题是,该教程有点过时,并且文档引用了委托(delegate)使用的方法,该方法自 3.0 起已被弃用。问题是,文档未能提供有关使用什么的线索?已弃用的方法是:
– imagePickerController:didFinishPickingImage:editingInfo:
上述方法的使用方法如下:
- (void) imagePickerController:(UIImagePickerController*)picker didFinishPickingImage:(UIImage*)img editingInfo:(NSDictionary*)editInfo
{
image.image = img;
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
}
问题:当前使用什么来代替已弃用的方法?
最佳答案
简而言之,以下是如何使用新的图像选择器 API。
首先,您需要一个这样声明的类,因为它将自身设置为图像选择器委托(delegate):
@interface MyClass : UIViewController <UINavigationControllerDelegate, UIImagePickerControllerDelegate> {
UIImagePickerController* imagePicker;
}
@property(nonatomic,retain) UIImagePickerController* imagePicker;
- (IBAction) takePicture:(id)sender;
@end
调出图像选择器的方法会是这样的。它在此处声明为 IBAction,因此您可以将其直接连接到 Interface Builder 中的控件(如按钮)。它还会进行检查,以便如果您使用 iPhone,它会调出相机界面,但在 iPod Touch 上,它会调出图库选择器:
#import <MobileCoreServices/UTCoreTypes.h>
...
@synthesize imagePicker = _imagePicker;
...
- (void) takePicture:(id)sender
{
if (!_imagePicker) {
self.imagePicker = [[UIImagePickerController alloc] init];
self.imagePicker.delegate = self;
}
if ([UIImagePickerController isSourceTypeAvailable:UIImagePickerControllerSourceTypeCamera]) {
self.imagePicker.sourceType = UIImagePickerControllerSourceTypeCamera;
NSArray* mediaTypes = [UIImagePickerController availableMediaTypesForSourceType:UIImagePickerControllerSourceTypeCamera];
self.imagePicker.mediaTypes = mediaTypes;
} else {
self.imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
self.imagePicker.allowsImageEditing = YES;
}
[self presentModalViewController:self.imagePicker animated:YES];
}
那么你需要这两个方法:
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
// MediaType can be kUTTypeImage or kUTTypeMovie. If it's a movie then you
// can get the URL to the actual file itself. This example only looks for images.
//
NSString* mediaType = [info objectForKey:UIImagePickerControllerMediaType];
// NSString* videoUrl = [info objectForKey:UIImagePickerControllerMediaURL];
// Try getting the edited image first. If it doesn't exist then you get the
// original image.
//
if (CFStringCompare((CFStringRef) mediaType, kUTTypeImage, 0) == kCFCompareEqualTo) {
UIImage* picture = [info objectForKey:UIImagePickerControllerEditedImage];
if (!picture)
picture = [info objectForKey:UIImagePickerControllerOriginalImage];
// **You can now do something with the picture.
}
self.imagePicker = nil;
}
- (void)imagePickerControllerDidCancel:(UIImagePickerController *)picker
{
[[picker parentViewController] dismissModalViewControllerAnimated:YES];
self.imagePicker = nil;
}
关于iphone - 使用什么来代替已弃用的 UIImagePickerControllerDelegate 方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1225323/
我正在开发一个简单的应用程序扫描二维码。为了扫描 QR 码,我使用一种委托(delegate)方法,如下所示。 - (void) imagePickerController: (UIImagePick
我已将 UIImagePickerController 添加到 UIViewController。我还将 UIImagePickerControllerDelegate 分配给了 UIViewCont
所以我有这段代码可以获取我的画廊中的照片或使用相机更改 UIImage。 @IBAction func tappedCamera() { print("tapped camera")
我正在尝试创建一个 Controller 来处理所有图像功能,以便您可以轻松地从任何 View Controller 绑定(bind)所有相机操作。 理想情况下,我的目标是创建一个具有返回 UIIma
我有一个独立的类,可以使用 UIImagePickerController 从相机/照片库中获取图像。 我似乎无法弄清楚为什么没有调用 didFinishPickingMediaWithInfo 或
我在 iPhone 3G 上使用 iOS 4.2.1 中的 UIImagePickerController。我以前使用过弃用的方法 - (void)imagePickerController: did
我遵循了一个很棒的教程( http://iphone.zcentric.com/2008/08/28/using-a-uiimagepickercontroller/ ),使用 UIImagePick
我有一个项目,其中有许多使用 imagePicker 的 View Controller 。每次,我都必须再次复制 didFinishPickingMediaWithInfo 并且只更改一些代码。 然
我最近重构了我的应用程序以实现 命令 图案。为此,我试图将我的所有功能都集成到适当的命令类中。我已经成功地为我的所有命令实现了该模式,但有一个异常(exception)。我有一个名为 HarvestP
这个问题在这里已经有了答案: error: Cannot subscript a value of type '[String : Any]' with an index of type 'UIIm
我有一个类,我在其中调用 UIImagePickerController 来选择一个图像并返回它,这样我就可以在我的代码中的其他地方使用它。 现在我设置了委托(delegate)并实现了我需要的必要函
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.Camera) {
我有一个 iPhone 应用程序,它调用 UIImagePickerController 让人们可以选择通过相机或通过手机上的照片库选择图像。问题是,有时(不能总是让它复制。),本应由 didFini
我正在使用 UIImagePickerController 来选择图像。我也希望获得本地路径。 我正在使用 对相册中的图像执行此操作 info[UIImagePickerController.Info
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我错过了一些东西。这段代码运行良好,但我想清除所有编译器警告。 Sending 'GSBBuilderImageButton *const __strong' to parameter of inco
我有一个应用程序需要拍照然后显示给用户。我使用以下代码打开相机让用户拍照: if ([UIImagePickerController isSourceTypeAvailable: UIImagePic
func openGallery(sender: AnyObject) { var imagePicker = UIImagePickerController() imagePicke
我如何使用更新后的 UIImagePickerControllerDelegate API,因为它更改为 [UIIMagePickerController.InfoKey : Any]?这部分已经更新
我在 Swift 中有一个新的 iOS 应用程序,我试图在应用程序启动后立即显示相机。在我的 View Controller 中,我有一个 UIView 对象,我尝试用相机填充它。 我的 View C
我是一名优秀的程序员,十分优秀!