根據我的要求,想要爲我的GCDWebUploader訪問iOS設備照片應用程序文件url(不是文件數據)。我想要我的Web服務器的資產庫網址。轉換Ios相冊路徑url與文檔目錄相同文件路徑
NSString* documentsPath =[NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES) firstObject];
_webServer = [[GCDWebUploader alloc] initWithUploadDirectory: documentsPath];
// this is working and document directory files shown on browser.
_webServer = [[GCDWebUploader alloc] initWithUploadDirectory:assetsUrl]; // this is not working.Nothing shown on browser. //assetsUrl= assets library url for file from photos app
_webServer.delegate = self;
_webServer.allowHiddenItems = YES;
[_webServer start];
我的web服務器顯示的所有照片應用程序的圖片和視頻在PC瀏覽如果文檔directory.this功能已經在使用GCDWebUploader完成。但我無法找到資產網址的行爲像文件路徑。
我不想將照片應用程序文件複製到文檔目錄和use.but直接從資產庫訪問。
我希望資產url的工作與文檔目錄filepath相同。請幫助我。
我已經上傳圖像在文檔目錄中,但圖像不顯示在瀏覽器中。你能幫我在瀏覽器中顯示圖像嗎? – Bhumi