我尝试使用 cocoaHttpServer 通过 pc/mac 浏览器显示我的文档的文件夹文件,我使用 iPhoneHTTPServer 示例,我更改了根目录但我没有看到任何文件。这是我的代码:
[DDLog addLogger:[DDTTYLogger sharedInstance]];
httpServer = [[HTTPServer alloc] init];
[httpServer setType:@"_http._tcp."];
NSArray *documentPaths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDir = [documentPaths objectAtIndex:0];
[httpServer setDocumentRoot:documentsDir];
[self startServer];
我需要创建一个索引文件?但在这种情况下,我需要从设备刷新索引内容,而不是从浏览器刷新......有什么提示吗?