作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有代码可以让用户选择现有图像并让它在屏幕上的 UIView 中很好地显示。
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {
UIImage *chosenImage = info[UIImagePickerControllerEditedImage];
self.imageView.image = chosenImage;
NSLog(@"image is%@",chosenImage);
[picker dismissViewControllerAnimated:YES completion:NULL];
}
最佳答案
如下所示,您无法从 UIImagePickerControllerDelegate
中获取所选图像的名称使用当前现有的 API。
这里有 UIImagePickerControllerDelegate 的可用 Editing Information Keys :
NSString *const UIImagePickerControllerMediaType;
NSString *const UIImagePickerControllerOriginalImage;
NSString *const UIImagePickerControllerEditedImage;
NSString *const UIImagePickerControllerCropRect;
NSString *const UIImagePickerControllerMediaURL;
NSString *const UIImagePickerControllerReferenceURL;
NSString *const UIImagePickerControllerMediaMetadata;
AssetsLibrary.framework
获取由 Photos 应用程序管理的图像的名称:
@import AssetsLibrary;
- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info
{
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library assetForURL:info[UIImagePickerControllerReferenceURL]
resultBlock:^(ALAsset *fileAsset) {
NSLog(@"%@", [[fileAsset defaultRepresentation] filename]);
} failureBlock:nil];
}
关于ios - Xcode/ios : How do you get name of image after letting user select one and displaying it?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29585182/
我是一名优秀的程序员,十分优秀!