菜鸟教程小白 发表于 2022-12-12 22:33:33

objective-c - 如何在 iOS 中使用 Reskit 上传文件


                                            <p><p>如何使用 Restkit 上传音频文件?我查看了文档,似乎找不到有关上传文件的任何信息。感谢您的帮助。</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>这篇文章解释了如何:<a href="http://mobile.tutsplus.com/tutorials/iphone/advanced-restkit-development_iphone-sdk/" rel="noreferrer noopener nofollow">http://mobile.tutsplus.com/tutorials/iphone/advanced-restkit-development_iphone-sdk/</a> </p>

<p>摘录:</p>

<pre><code>NSString* myFilePath = @&#34;/some/path/to/picture.gif&#34;;
RKParams* params = ;

// Set some simple values -- just like we would with NSDictionary
;
;

// Create an Attachment
RKParamsAttachment* attachment = ;
attachment.MIMEType = @&#34;image/gif&#34;;
attachment.fileName = @&#34;picture.gif&#34;;

// Attach an Image from the App Bundle
UIImage* image = ;
NSData* imageData = UIImagePNGRepresentation(image);
;

// Let&#39;s examine the RKRequestSerializable info...
NSLog(@&#34;RKParams HTTPHeaderValueForContentType = %@&#34;, );
NSLog(@&#34;RKParams HTTPHeaderValueForContentLength = %d&#34;, );

// Send a Request!
[ post:@&#34;/uploadImages&#34; params:params delegate:self];
</code></pre>

<p>享受吧!</p></p>
                                   
                                                <p style="font-size: 20px;">关于objective-c - 如何在 iOS 中使用 Reskit 上传文件,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/12199228/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/12199228/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: objective-c - 如何在 iOS 中使用 Reskit 上传文件