gpt4 book ai didi

objective-c - 如何从 iOS 上的相机胶卷中检索最新照片?

转载 作者:IT王子 更新时间:2023-10-29 07:50:52 25 4
gpt4 key购买 nike

我很难弄清楚如何在没有用户干预的情况下以编程方式检索相机胶卷中的最新照片。明确地说,我不想使用图像选择器,我希望应用程序在打开时自动抓取最新照片。

我知道这是可能的,因为我见过一个类似的应用程序这样做,但我似乎找不到任何关于它的信息。

最佳答案

一种方式是使用AssetsLibrary,以n-1作为索引进行枚举。

ALAssetsLibrary *assetsLibrary = [[ALAssetsLibrary alloc] init];
[assetsLibrary enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos
usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
if (nil != group) {
// be sure to filter the group so you only get photos
[group setAssetsFilter:[ALAssetsFilter allPhotos]];

if (group.numberOfAssets > 0) {
[group enumerateAssetsAtIndexes:[NSIndexSet indexSetWithIndex:group.numberOfAssets - 1]
options:0
usingBlock:^(ALAsset *result, NSUInteger index, BOOL *stop) {
if (nil != result) {
ALAssetRepresentation *repr = [result defaultRepresentation];
// this is the most recent saved photo
UIImage *img = [UIImage imageWithCGImage:[repr fullResolutionImage]];
// we only need the first (most recent) photo -- stop the enumeration
*stop = YES;
}
}];
}
}

*stop = NO;
} failureBlock:^(NSError *error) {
NSLog(@"error: %@", error);
}];

关于objective-c - 如何从 iOS 上的相机胶卷中检索最新照片?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10200553/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com