如何使用 iOS 混合网络/二进制应用程序将照片上传到我的服务器?
我正在开发一个适用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
看看
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 usingNSURLConnection
. The presence ofUIWebView
is irrelevant.