Changeset 778

Show
Ignore:
Timestamp:
07/26/08 12:40:32 (4 months ago)
Author:
kaz
Message:
Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/TwitterFon/Classes/Network/ImageDownloader.m

    r774 r778  
    1212{ 
    1313        [super dealloc]; 
     14} 
     15 
     16- (void)connection:(NSURLConnection *)aConnection didReceiveResponse:(NSURLResponse *)response 
     17{ 
     18    NSHTTPURLResponse* res = (NSHTTPURLResponse*)response; 
     19    if (res) { 
     20        statusCode = res.statusCode; 
     21    } 
     22        [buf setLength:0]; 
    1423} 
    1524