菜鸟教程小白 发表于 2022-12-13 01:45:38

iphone - 拍照并在iOS中设置为UIImageView


                                            <p><div>
            <aside class="s-notice s-notice__info post-notice js-post-notice mb16"role="status">
      <div class="d-flex fd-column fw-nowrap">
            <div class="d-flex fw-nowrap">
                <div class="flex--item wmn0 fl1 lh-lg">
                  <div class="flex--item fl1 lh-lg">
                        <b>这个问题在这里已经有了答案</b>:
                        
                  <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>您需要做的是,首先添加一个按钮,标题为“添加照片”或自定义图像。</p>

<p>然后点击按钮添加以下代码:</p>

<pre><code>    if (([UIImagePickerController isSourceTypeAvailable:
            UIImagePickerControllerSourceTypeCamera] == NO)
            return NO;

      UIImagePickerController *cameraUI = [ init];
      cameraUI.sourceType = UIImagePickerControllerSourceTypeCamera;
;
</code></pre>

<p>它会打开相机,然后你点击图片,然后点击“使用”,你必须实现 UIImagePickerControllerDelegate 方法 <strong>imagePickerController:didFinishPickingMediaWithInfo:</strong> 然后将 UIImage 存储到任何你想要的地方,使用任何你想要的文件名,使用 NSFileManager 方法。</p></p>
                                   
                                                <p style="font-size: 20px;">关于iphone - 拍照并在iOS中设置为UIImageView,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/15609321/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/15609321/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: iphone - 拍照并在iOS中设置为UIImageView