菜鸟教程小白 发表于 2022-12-13 04:43:21

iphone - 相机照片保存在带有名称的文件夹中,并在 iphone 的 tableview 中查看


                                            <p><p>我想用相机拍照并保存在文档目录中,名称和图像在 UITableViewCell 中查看。</p>

<p>如果我选择任何一行,则相应的行图像将转到带有名称和图像的下一个 View 。 </p>

<p>请给出你的想法、建议和引用代码。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>试试这个方法将 UIImage 存储在本地目录中...</p>

<pre><code>- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info {

UIImage *pickedImage = ;
;

}

- (void)addImage:(UIImage *)image toCacheWithIdentifier:(NSString *)identifier {

    NSString *folderPath = @&#34;LOCAL DIRECTORY PATH &#34;;
    if(![ fileExistsAtPath:folderPath isDirectory:nil]) {

      [ createDirectoryAtPath:folderPath withIntermediateDirectories:YES attributes:nil error:nil];
    }

    NSString *fileName = ;

fileName = ;

NSData *imageData = UIImagePNGRepresentation(image);

   ;
}
</code></pre>

<p>在点击表格 View 单元格时检索图像,从 <code>didselectRowAtIndexPath</code> ....</p> 调用此方法

<pre><code>- (UIImage *)imageFromCacheWithIdentifier:(NSString *)identifier {

    NSString *folderPath = @&#34;LOCAL DIRECTORY PATH &#34;;

    NSString *fileName = ;

    fileName = ;

    if() {

      return ;

    }

    return nil;
}
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 相机照片保存在带有名称的文件夹中,并在 iphone 的 tableview 中查看,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/19378947/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/19378947/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 相机照片保存在带有名称的文件夹中,并在 iphone 的 tableview 中查看