菜鸟教程小白 发表于 2022-12-12 15:17:50

ios - 捕获图像无法正常工作。?


                                            <p><p>您好,我是开发 iOS 应用程序的新手,请帮助我。我在使用 <code>UIImagePicker</code> 捕获图像时遇到问题。我已将 hip mob 应用程序集成到我们的应用程序中。 </p>

<p>在该窗口中,我想显示一个 <code>UIButton</code> 以便用户单击该 <code>UIButton</code> 应捕获图像。当我单击按钮时,它会抛出一条消息(其 View 不在窗口层次结构中!)。 </p>

<p>我认为这是由于这个聊天窗口造成的。这是我的代码片段。!</p>

<pre><code>[ openChat:self withSetup:^(HMChatViewController * controller)
{
controller.chatDelegate = self;
controller.chatView.receivedMessageFont = ;
controller.navigationBarHidden = YES;
UIView * viewObjForVehicleDetails = [init];
UIButton * btnForCaputrePhoto = [init];
;
btnForCaputrePhoto.frame = CGRectMake(55, 90, 103, 85);
;
;
[ registerClass: forCellReuseIdentifier:@&#34;ReuseChatTableViewCell&#34;];
}


-(void)CapturePhotoImage
{
UIImagePickerController *picker = [ init];
picker.delegate = self;
picker.allowsEditing = YES;
picker.sourceType = UIImagePickerControllerSourceTypeCamera;
;

}   


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

<p>提前致谢!</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p><em>首先确保您在 ViewController 中使用了以下委托(delegate)</em></p>

<pre><code>&lt;UINavigationControllerDelegate, UIImagePickerControllerDelegate&gt;
</code></pre>

<p><em>第二次使用这一行来显示 ImagePicker:-</em></p>

<pre><code>;
</code></pre>

<p><strong>替代方式:-</strong></p>

<pre><code>
</code></pre></p>
                                   
                                                <p style="font-size: 20px;">关于ios - 捕获图像无法正常工作。?,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/30235365/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/30235365/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - 捕获图像无法正常工作。?