gpt4 book ai didi

ios - iOS 上的 CocoaHTTPServer : set up server so user can download NSData as file

转载 作者:可可西里 更新时间:2023-11-01 03:49:44 26 4
gpt4 key购买 nike

我想使用 CocoaHTTPServer 制作以下网页: 应该有下载文件的链接,但源文件必须是NSData内存中的对象。

据我在样本中看到的,有一种简单的方法可以将 iPhone 上的某些文件链接到超链接。是否可以“链接”NSData

非常感谢示例。

最佳答案

您需要做的就是返回 HTTPDataResponse在您的 HTTPConnection 子类中。

如果您想要一个示例,请查看名为 DynamicServer 的 CocoaHTTPServer 示例并将 - httpResponseForMethod: URI: 替换为 MyHTTPConnection 中的类似以下内容:

- (NSObject<HTTPResponse> *)httpResponseForMethod:(NSString *)method URI:(NSString *)path
{
// Before returning you can analyze the passed path argument and select the correct data object to return...
return [[HTTPDataResponse alloc] initWithData:placeYourDataInstanceHere];
}

关于ios - iOS 上的 CocoaHTTPServer : set up server so user can download NSData as file,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/12886397/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com