ios - 如何从照片库中获取最后一张照片的路径?
<p><p>我正在使用这种方法进行屏幕截图:</p>
<pre><code> UIGraphicsBeginImageContextWithOptions(self.view.bounds.size, self.view.opaque, 0.0);
;
UIImage*theImage=UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
UIImageWriteToSavedPhotosAlbum(theImage, nil, nil, nil);
</code></pre>
<p>我想获取该照片的路径,以便我可以将其与 Instagram 方法一起使用</p>
<pre><code>NSURL *igImageHookFile = [ initWithString:[ initWithFormat:@"file://%@", lastphotoTaken]];
// NSURL *igImageHookFile = [ initWithString:[ initWithFormat:@"file://%@", lastphotoTaken]];
self.dic.UTI = @"com.instagram.exclusivegram";
self.dic = ;
self.dic=;
self.dic.annotation = ;
;
</code></pre>
<p>感谢</p></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>无法使用以下方法获取 Assets 网址:</p>
<pre><code>UIImageWriteToSavedPhotosAlbum(theImage, nil, nil, nil);
</code></pre>
<p>您可以使用:</p>
<pre><code>ALAssetsLibrary *library = [ init];
orientation:(ALAssetOrientation) completionBlock:^(NSURL *assetURL, NSError *error){
if (error)
{
NSLog(@"Ooops!");
}
else
{
NSLog(@"Saved URL : %@", assetURL);
}
}];
;
</code></pre></p>
<p style="font-size: 20px;">关于ios - 如何从照片库中获取最后一张照片的路径?,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/19733210/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/19733210/
</a>
</p>
页:
[1]