Tagged Questions
1
vote
2answers
41 views
Downloading pdf is not working
I am trying to download locally the PDF that is there on my UIWebView using code mentioned below.
Save PDF which is displayed by UIWebView locally
When I type, NSLog(@"pdfille==%@", pdfFile);, I see ...
0
votes
1answer
32 views
Call WCF service from iOS app
*Background:*I have a "document repository" kind-of app.The iOS app calls a WCF service to download the document as well as to get its metadata(document name,document size,etc).There is also a .Net ...
1
vote
4answers
102 views
Objective C: Downloading File With Progress Bar [duplicate]
I am trying to put a progress bar that syncs during the download that is happening.
My app now can download a file using with this codes...
pdfData = [[NSData alloc] initWithContentsOfURL:[NSURL ...
1
vote
2answers
54 views
I get error when use AFNetworking in xcode for download file
I create one application that has one page and in this page exist one button that downloaded file when click on.
I can download file with AFNetworking but in my has error ....
this is my code :
- ...
0
votes
1answer
43 views
Images downloading intermittently
I have an iPad app which connects to a C# web service to download documents and images.
If I run it as a fresh install on the iPad, it downloads the expected documents and images. If I upload a new ...
0
votes
1answer
50 views
how to use ProgressView in xcode for show download's status
I create one application that download file from url with any size.I have one button and one progress view in my page . I want when click on button downloaded file and show me download's status in ...
1
vote
1answer
58 views
how to download files from url and store in document folder [duplicate]
I created one application that has two page (first page for show list of data and second page for show detail data).
when click on any cell go to next page and in next page exists one button with ...
1
vote
3answers
90 views
How do i get the file size to know whether its download or not?
hi iam using following code for downloading epub /pdf from a url .I like to give a progress bar so when i start downlaoding it shows the progress and when the download completes it will popup a ...
2
votes
1answer
376 views
Download a PDF using PhoneGap to be viewed offline?
I'm developing an iPhone app where the user can download files (.pdf, .docx etc) using PhoneGap and HTML in Xcode and then either view them 'Online' (where essentially the user views the files from ...
0
votes
0answers
60 views
How to download images and sounds from URL to modify iOS app viewcontroller [closed]
So I have this situation wherein my in app purchase requires assets be gotten from URL.
My in app purchase has single UIViewController which is done in storyboard. I will give this UIViewcontroller ...
0
votes
1answer
75 views
How do I download a set of files from s3 using ios?
I've seen a lot of questions on SO answering this but yet I'm having trouble getting the implementation right because the files aren't downloading.
Some background is that I have a set of 10 files in ...
0
votes
0answers
54 views
ios - changing a file name when downloading a file
I would like to know if there is a way to alter the name of file when it is being downloaded on an iOS device. The code below sets the path for my MP3 file (podcast) to be saved, but I can't seem to ...
0
votes
1answer
29 views
UIwebview filetype on clicking
I have a link containing excel file in gmail which i open in safari browser of ios device .
I want to open my application when i click on the link and download that file to the application document ...
0
votes
0answers
93 views
ios uidocument interaction controller
Iam building an app in which i have to click attachment which contains .xlsx file.
I have to open the same in uidocument interaction view controller and then send that into a php server . please help ...
0
votes
0answers
119 views
Download large files using ASIHTTP in iOS from WCF service hosted in IIS
I am using the ASIHTTP framework for downloading files from a location via a WCF service in .Net. I am using basicHttpBinding. I am also using a progressbar to display the progress of the files ...
0
votes
1answer
91 views
Code for resumable file downloads which downloads a valid file
I have implemented a resumable file download in my application. The resume function works properly but some how the file which gets downloaded is not valid.
For eg, I am downloading a zip file and ...
0
votes
1answer
73 views
Downloading fails much more frequently on iOS than on Android?
In my iOS project, I use NSURLConnection to download files. My code is just like the ...
0
votes
1answer
102 views
How to save multiple xml files in cache file path in ios?
Im saving xml file in cache file path as follows:
// Determile cache file path
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
filePathl = ...
0
votes
2answers
157 views
Best way to download file apart from ASIHTTPRequest for iphone
I want to download a file and show the download speed. I have used NSThreads with NSData. The length property is used with NSData to show the downloaded file size. However in my case this does not ...
3
votes
3answers
309 views
finding out the downloaded image file size in IOS
Hello I would like to run a thread and check the current downloaded size of a file.
This is what I use
UIImage *image = [[UIImage alloc] initWithData:[NSData dataWithContentsOfURL:[NSURL ...
1
vote
3answers
248 views
iOS - Progressive Download Indicator While Downloading Files
So this question has been asked a bunch of times, but all the answers are to us ASIHTTP library which is no longer supported.
So I was hoping someone could steer me in the right direction.
I download ...
0
votes
2answers
392 views
iOS - Download file only if modified (NSURL & NSData)
I am downloading a bunch of image files from a server, and I want to ensure that they are downloaded only if they are newer.
This method currently downloads the images just fine. However, I don't want ...
0
votes
5answers
153 views
iOS file downloading [duplicate]
Possible Duplicate:
iOS download and save image inside app
I want to download a file. I found this
[NSData dataWithContentsOfURL:[NSURL ...
1
vote
2answers
268 views
Download files on a website with Javascript using iOS
I'm trying to download a file programmly on this site, and I found that when you click the highlighted download button("下载"), it runs a Javascript: ...
1
vote
1answer
83 views
Download stored in RAM?
I got a question: How I understand this:
"iOS Note: The NSURLDownload class is not available in iOS, because downloading directly to the file system is discouraged. Use the NSURLConnection class ...
2
votes
2answers
302 views
How to multiple background video downloads in iOS?
I have an iOS application, where I need to download over 60-70 videos a week of size 3-8MB each.
The issue is, how do I download these videos?
I am storing the list of videos and urls in a database.
...
0
votes
1answer
587 views
Downloading file using NSURLConnection?
I have an api that gets me the file url to download. I am using NSURLConnection to download the file. The file size could be a little big cause its an MP4.
Code Steps:
Initialized ...
0
votes
0answers
125 views
iOS Downloading Videos and saving in Application Support folder
In my application, i've to download videos around 10 to my application and play accordingly. Each video is around 50 MB.
I'm using following code and then after downloading the video, i'm saving it to ...
0
votes
1answer
150 views
File Download UIWebView to UITableView
i managed to make a downloader with UIWebView. what i want to do is, when the download starts,
it should start in a different viewcontroller say tableView.
I have a tabbar controller in which last ...
0
votes
0answers
105 views
iOS File Download from File Hosting
I am making an app, in which i want a download functionality.
When user taps on a tableview row, it opens a webview with the specific filehosting url.
then as usual their count downs and captcha's. ...
0
votes
1answer
73 views
asihttprequest download only if not already stored
I am donwloading and retrieving files with ASIHTTPRequest. It already works, but now I am trying to break the download, when it is already stored. I can't figure out, how to implement this problem. I ...
0
votes
1answer
717 views
Fully featured file download manager for iOS
I've been looking for a nice file download manager I can use in my app and haven't been able to find anything with the features I want...
queue multiple async downloads
control number of ...
0
votes
1answer
110 views
Where to Store purchased very huge files >200MB on iOS?
Where i have to store downloaded huge files on iOS?
the file is more then 200MB.
Is < Application_Home >/Library/Caches the right directory for it?
The file is downloaded after in app purchase ...
0
votes
1answer
116 views
How to download a file from the server using a POST request or a more secure method without using a GET request for iOS application.
I do not want to use asihttp methods so is there a way to download a file from the server without having to use a get request? How to use a post request to download the file from the server?
0
votes
1answer
531 views
PhonegapBuild simple file download
I built pure html PhoneGap app that works great on Android. It have link to download large video files. Simple direct link. However it does not download on iPhone or iOS. Their browser does not ...
1
vote
4answers
222 views
How to respond to an HTTP request using Python
I am trying to write an iPhone application that uses a Python server. The iPhone application will send an HTTP request to the server, which should then respond by sending back a file that is on the ...
0
votes
0answers
123 views
Titanium - XHR not working in 3G
I am using the following function to take an array of three items and then download the url of each item. This works great in a wireless enviroment, but when im out in 3g territory, it only works 75 ...
1
vote
2answers
3k views
How to pause/resume downloads in iPhone (iOS)
I have to download large amount of data (anywhere between 300MB - 1GB).
I am currently using **NSURLConnection**to download the data. But, now i am looking at a scenario where the user might loose ...
3
votes
2answers
252 views
iOS download each file separately or in one archive
I'm working on an iOS app where I need to regularly "push" new levels to device. Level is a HTML5 page with images, javascript and css files. I need all level's files to be cached locally before level ...
0
votes
1answer
227 views
Check is the downloaded mp4 file is proparly downloaded to play. - iphone sdk
I have developed the code for downloading the mp4 video from server. It does work perfectly sometime but sometime the video which is downloaded is not proper so its not playing.
Sometime it that ...
0
votes
1answer
270 views
iOS file downloading library
In my iOS app I use HTML5 files as game levels. New levels will be added in the future, so I need to create a smart solution that will sync files on device with files on the server each time a new ...
0
votes
1answer
192 views
Is it possibile to use NewsstandKit.framework in a non–Newsstand app?
Before going all the hassle coding a generic asynchronous, queued, background running file download library with pause, resume and cancel features, I was wondering if is it possible using some of the ...
3
votes
3answers
898 views
Multiple downloading of files wihtout locking the UI in ios
I am having an array that contains different urls, and a set of buttons, each link is assigned to each buttons. When clicking on a button, the content in the url which is assigned to that particular ...
1
vote
3answers
363 views
How to save a downloaded file as Read-only in iOs
In my iPhone app I am downloading some binary files. I want to store these files in a local folder in the device. And also I want to make these files as Read-only/Hidden. Is it possible? So that I can ...
3
votes
2answers
3k views
Progress bar while downloading
I have an app with in-app downloading. I successfully download mp3 files in this way:
NSData *data1 = [NSData dataWithContentsOfURL:[NSURL URLWithString:@"http://.../somefile.mp3"]];
[data1 ...
0
votes
1answer
170 views
Update a .csv file on server from iPad programmatically
I am developing a simple iPad application that should submit some text from a form to a .csv file. I could manage to update the .csv file which is saved locally in the documents folder on my computer. ...
2
votes
1answer
826 views
viewing/downloading a file in Phonegap iOS app
Im building an iOS phonegap(v 1.3) app. In that on a page i have given a button to download a .pptx file.
<a href="'+downloadUrl+'" target="_blank">Download file</a>
The href of the ...
2
votes
1answer
378 views
Display UIAlertView before downloading file on iOS
I am trying to get my UIAlertView to display before I use dataWithsContentsOfURL in another method because after the file is downloaded then I want to automatically dismiss the activity indicator. ...
0
votes
1answer
196 views
iPhone add music to the app through web downloads. Where to start?
I have an app ready to publish, and it's size is creeping dangerously close to 20mb. As far as I understand, at 20mb it can no longer be downloaded over the air, which I expect has a pretty big ...
0
votes
3answers
968 views
Where file donwloads in iPhone?
If i will download file in iPhone from my custom Application, where it will save file and how to get list of downloaded files before, if i will restart my app? Is there any named app storage or global ...




