iOS:从相机胶卷中获取最后一张图片
<p><p>我想要保存在相机胶卷中的最后一张图片。
我已经搜索过了,但是我得到了在 iOS 9 中已弃用的 ALAssetsLibrary 的结果,所以请为此提供解决方案,因为我没有得到适当的解决方案。</p>
<p>我想要 objective-c中的解决方案。</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>请检查此代码...它可能会对您有所帮助。</p>
<pre><code>PHFetchOptions *fetchOptions = [ init];
fetchOptions.sortDescriptors = @[];
PHFetchResult *fetchResult = ;
PHAsset *lastAsset = ;
[ requestImageForAsset:lastAsset
targetSize:self.photoLibraryButton.bounds.size
contentMode:PHImageContentModeAspectFill
options:PHImageRequestOptionsVersionCurrent
resultHandler:^(UIImage *result, NSDictionary *info) {
dispatch_async(dispatch_get_main_queue(), ^{
[ setImage:result forState:UIControlStateNormal];
});
}];
</code></pre></p>
<p style="font-size: 20px;">关于iOS:从相机胶卷中获取最后一张图片,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/38781051/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/38781051/
</a>
</p>
页:
[1]