如何从 iPhone 应用程序通过 http 提交照片
有谁知道如何通过 http 从 iPhone 应用程序保存/上传照片?
谢谢
Does anyone have any idea how can I save/upload a photo from iphone application via http?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
通过可用的 SDK,您需要通过
UIImagePicker
控件来选择照片,将其转换为NSData
,应用适当的编码并执行 HTTP post。下面的代码片段展示了如何使用 UIImagePicker 控件:
http://www.ikangai.com/blog/development/code-snippet-of-the -week-uiimagepicker
Through the SDK available, you'd need to go through the
UIImagePicker
control to select a photo, convert it toNSData
, apply the appropriate encoding and the perform the HTTP post.Here's a code snipper showing how to use the UIImagePicker control:
http://www.ikangai.com/blog/development/code-snippet-of-the-week-uiimagepicker