使用 Objective-C 上传图像

发布于 2024-11-29 03:13:13 字数 790 浏览 0 评论 0原文

我正在为 Web 服务编写 iPhone 应用程序,并且需要将图像上传到该服务。在网络版本中,它使用 AJAX。但我对此知之甚少。我在网页上找到了以下上传按钮的代码:

        if (button.length) {
        new AjaxUpload(button, {
            action: '/Media/UploadFile',
            responseType: 'json',
            onSubmit: function (file, ext) {
                $('#bBar').progressBar(0);
                var uid = createUUID();
                timerID = setTimeout(function () { checkImageUploadProgress(uid, 1, 'image') }, 1000);
                startUpload();
                this.setData({ fileType: 1, guid: uid, DJUploadStatus: '::DJ_UPLOAD_ID::' + uid });
            },
            onComplete: function (file, response) {
            }
        });
    }

How should I Implement this function using the NSConnection class?

I'm writing an iPhone app for a web service and I need to upload image to the service. In the web version, it's using AJAX. But I know little about that. I find the following code on the web page for the upload button:

        if (button.length) {
        new AjaxUpload(button, {
            action: '/Media/UploadFile',
            responseType: 'json',
            onSubmit: function (file, ext) {
                $('#bBar').progressBar(0);
                var uid = createUUID();
                timerID = setTimeout(function () { checkImageUploadProgress(uid, 1, 'image') }, 1000);
                startUpload();
                this.setData({ fileType: 1, guid: uid, DJUploadStatus: '::DJ_UPLOAD_ID::' + uid });
            },
            onComplete: function (file, response) {
            }
        });
    }

How should I implement this function using the NSConnection class?

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

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

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文