如何使用 iOS 混合网络/二进制应用程序将照片上传到我的服务器?

发布于 2024-12-08 03:50:12 字数 335 浏览 1 评论 0原文

我正在开发一个适用于 iOS 的混合应用程序,

该应用程序是一个二进制文件,基本上包含一个 UIWebView 来使用我客户端的 Web 服务。该二进制文件还向用户提供有关设备连接状态的反馈(使用可达性)。

我现在正在开发一个功能,它基本上要求用户在 UIWebView 中填写一个小的 Web 表单,并且应该允许用户“附加”图片(例如头像)。

我想知道是否可以利用将 UIWebView (与 Web 服务交互)包装在二进制文件中的事实来为用户处理图像上传,而无需离开我的应用程序?

我对可能的解决方案持开放态度。

干杯。

I'm working on a hybrid app for iOS,

This application is a binary which basically contains a UIWebView to use my client's web service. The binary does also provide feedback to the user about the connectivity status of the device (using reachability).

There's a feature that I'm working on now, which basically requires a user to fill a small web form in the UIWebView, and that should allow the user to "attach" a picture (e.g avatar).

I was wondering if I could exploit the fact that I'm wrapping the UIWebView (to interact with the web service) in a binary to handle the image upload for the user without having to leave my Application?

I'm open to possible solutions.

Cheers.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

指尖微凉心微凉 2024-12-15 03:50:12

看看UIImagePickerController。它允许用户从应用程序中的“照片”应用程序或“相机”中选取图像。然后,您可以使用 NSURLConnection 将所选图像上传到您的服务器。 UIWebView 的存在是无关紧要的。

Have a look at UIImagePickerController. It allows the user to pick images from the Photos app or the Camera within your application. Then you can upload the selected image to your server using NSURLConnection. The presence of UIWebView is irrelevant.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文