菜鸟教程小白 发表于 2022-12-12 16:07:59

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:@&#34;file://%@&#34;, lastphotoTaken]];
//    NSURL *igImageHookFile = [ initWithString:[ initWithFormat:@&#34;file://%@&#34;, lastphotoTaken]];

self.dic.UTI = @&#34;com.instagram.exclusivegram&#34;;
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(@&#34;Ooops!&#34;);
    }
    else
    {
      NSLog(@&#34;Saved URL : %@&#34;, 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]
查看完整版本: ios - 如何从照片库中获取最后一张照片的路径?