Advertise Mobile SDKs Books Events Forum News Social Networking Support Us
Follow @iphonedevsdk on Twitter

Interface 2, Advanced iOS
Mockup & Code Gen
($9.99)

Make your own iPhone apps
and run them live!
(free)

Pic Frame Dynamo: Photo Editing
($0.99)

Abiliator
($1.99)

Want your application or service advertised on iPhone Dev SDK?

Go Back   iPhone Dev SDK Forum > iPhone SDK Development Forums > iPhone SDK Development

Reply
 
LinkBack Thread Tools Display Modes
Old 01-13-2012, 01:26 PM   #1 (permalink)
Registered Member
 
Join Date: Nov 2011
Posts: 25
theshay is on a distinguished road
Default Get Status of NSURL

I am download file with this code:
Code:
  NSString *stringURL = @"http://205.196.123.162/i8xsl429ahvg/t2axw01btcvpcay/makeyourwish.ipa";
    NSURL  *url = [NSURL URLWithString:stringURL];
    NSData *urlData = [NSData dataWithContentsOfURL:url];
    if ( urlData )
    {
        NSArray       *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString  *documentsDirectory = [paths objectAtIndex:0];  
        
        NSString  *filePath = [NSString stringWithFormat:@"%@/%@.ipa", documentsDirectory, selectedCountry];
        [urlData writeToFile:filePath atomically:YES];                                                                              
    }
how i can get status of file download?
theshay is offline   Reply With Quote
Old 01-13-2012, 01:34 PM   #2 (permalink)
Senior Member
iPhone Dev SDK Supporter
 
Join Date: Aug 2008
Location: Memphis, TN, USA
Age: 24
Posts: 3,983
smithdale87 is on a distinguished road
Send a message via AIM to smithdale87
Default

by "status", do you mean something like % downloaded?
smithdale87 is offline   Reply With Quote
Old 01-13-2012, 01:35 PM   #3 (permalink)
Registered Member
 
Join Date: Nov 2011
Posts: 25
theshay is on a distinguished road
Default

Quote:
Originally Posted by smithdale87 View Post
by "status", do you mean something like % downloaded?
yes.
theshay is offline   Reply With Quote
Old 01-13-2012, 02:04 PM   #4 (permalink)
Cocoa Junkie
 
Duncan C's Avatar
 
Join Date: Dec 2008
Location: Northern Virginia
Posts: 6,003
Duncan C has a spectacular aura about
Default

Quote:
Originally Posted by theshay View Post
I am download file with this code:
Code:
  NSString *stringURL = @"http://205.196.123.162/i8xsl429ahvg/t2axw01btcvpcay/makeyourwish.ipa";
    NSURL  *url = [NSURL URLWithString:stringURL];
    NSData *urlData = [NSData dataWithContentsOfURL:url];
    if ( urlData )
    {
        NSArray       *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
        NSString  *documentsDirectory = [paths objectAtIndex:0];  
        
        NSString  *filePath = [NSString stringWithFormat:@"%@/%@.ipa", documentsDirectory, selectedCountry];
        [urlData writeToFile:filePath atomically:YES];                                                                              
    }
how i can get status of file download?
The code you're posting is doing a synchronous download, which is the worst way to do a download from the internet. It will cause your app to freeze until the download is complete, and you have no way to do anything at all while the download is taking place.

You should use NSURLRequest and NSURLConnection to create an async download. NSURLConnection hands you data as it comes in, so if you know the total file size, it's a snap to calculate the % complete.

To use NSURLConnection you have to set yourself up as the delegate, and then handle 2 or 3 delegate messages. It's not that hard.
__________________
Regards,

Duncan C
WareTo

Check out our apps in the Apple App store


Check out this password generator app that shows various techniques including using a data container singleton object to share data between objects in your project.

See this tutorial on using UIView animations and layer animations:

See this thread on generating random, non-repeating text

Check out a very cool Macintosh Kaleidoscopes app called ScopeWorks that we released to the Mac App store.
Duncan C is offline   Reply With Quote
Old 01-13-2012, 02:20 PM   #5 (permalink)
Registered Member
 
Join Date: Nov 2011
Posts: 25
theshay is on a distinguished road
Thumbs up

Quote:
Originally Posted by Duncan C View Post
The code you're posting is doing a synchronous download, which is the worst way to do a download from the internet. It will cause your app to freeze until the download is complete, and you have no way to do anything at all while the download is taking place.

You should use NSURLRequest and NSURLConnection to create an async download. NSURLConnection hands you data as it comes in, so if you know the total file size, it's a snap to calculate the % complete.

To use NSURLConnection you have to set yourself up as the delegate, and then handle 2 or 3 delegate messages. It's not that hard.
thanks.
theshay is offline   Reply With Quote
Reply

Bookmarks

Tags
download, ipa, iphone, nsurl, xcode

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



» Advertisements
» Online Users: 381
10 members and 371 guests
7twenty7, Atatator, glenn_sayers, guusleijsten, iphonedevshani, QuantumDoja, sacha1996, Sami Gh, tim0504, VinceYuan
Most users ever online was 1,387, 04-10-2012 at 04:21 AM.
» Stats
Members: 175,674
Threads: 94,122
Posts: 402,907
Top Poster: BrianSlick (7,990)
Welcome to our newest member, Atatator
Powered by vBadvanced CMPS v3.1.0

All times are GMT -5. The time now is 05:42 AM.
Powered by vBulletin® Version 3.8.0
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.3.0