iOS開発初心者です。NSURLConnectionDataDelegate プロトコルを実装しようとしていますが、どのデリゲート メソッドも呼び出されないようです。デリゲート メソッドを自分で入力する必要がありましたが、自動的に生成されるはずですか?
各デリゲート メソッドに NSLog コマンドがありますが、何も出力されません。NSURLConnection を使用して非同期にダウンロードし、進行状況を追跡しているので、後で progressView を更新できます。
SearchFeed.h ファイル (NSURLConnectionDataDelegate と入力したときにプロトコルを実装しようとしたことに注意してください
#import <Foundation/Foundation.h>
#import "Doc.h"
@interface SearchFeed : NSObject <NSXMLParserDelegate, NSURLConnectionDataDelegate>
{
NSMutableString * currentElementValue;
Doc *currentDoc;
}
@property(strong,nonatomic) NSURL * searchUrl;
@property(strong,nonatomic) NSArray * searchResults;
//@property(retain, nonatomic) Doc * currentDoc;
@property(retain, nonatomic) NSMutableArray *docs;
//@property(retain, nonatomic) NSURLConnection *urlConnection;
@property(retain, nonatomic) UIProgressView * progressBar;
-(void)retrieveFromInternet;
-(double) getProgress;
+(NSString *)pathToDocuments;
+(void)downloadPDFToMyDocumentsFrom:(NSString*) PDFUrl filename:(NSString *) title;
+(NSArray *)listFilesAtPath:(NSString *)path;
@end
SearchFeed.m ファイル:
#import "SearchFeed.h"
@implementation SearchFeed
@synthesize searchUrl = _searchUrl; //where to search from
@synthesize searchResults = _searchResults; // Not being used -- I think
//@synthesize currentDoc = _currentDoc; //current Doc
@synthesize docs = _docs; //array of Docs
@synthesize progressBar = _progressBar;
NSURLConnection *urlConnection;
double fileLength =0;
double lastProgress =0;
double currentLength =0;
NSOutputStream *fileStream;
+(void)downloadPDFToMyDocumentsFrom:(NSString*) PDFUrl filename:(NSString *) title {
NSURL *url = [[NSURL alloc] initWithString:PDFUrl];
NSURLRequest *request = [[NSURLRequest alloc] initWithURL:url];
urlConnection = [[NSURLConnection alloc] initWithRequest:request delegate:self startImmediately:YES];
NSString *fileName = [title stringByAppendingPathExtension:@"pdf"];
NSString *filePath = [[self pathToDocuments] stringByAppendingPathComponent:fileName];
fileStream = [[NSOutputStream alloc] initToFileAtPath:filePath append:YES];
[fileStream open];
}
//handling incoming data
-(void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data{
double length = [data length];
currentLength += length;
double progress = currentLength/fileLength;
NSLog(@"Receiving data");
if(lastProgress < progress)
{
//progressBar WRITE code to update the progress for the progress bar
lastProgress = progress;
self.progressBar.progress = lastProgress;
NSLog(@"%f -------------------------------------------------------", lastProgress);
}
NSUInteger left = [data length];
NSUInteger nwr = 0;
do {
nwr = [fileStream write:[data bytes] maxLength:left];
if(nwr == -1)
break;
left -= nwr;
}while(left>0);
if(left)
{
NSLog(@"Stream error: %@", [fileStream streamError]);
}
}
-(void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response{
long length = [response expectedContentLength];
fileLength = length;
NSLog(@"%f ------------------------------------------------------- is the fileLength", fileLength);
}
//handling connection progress
-(void)connectionDidFinishLoading:(NSURLConnection *)connection{
//WRITE code to set the progress bar to 1.0
self.progressBar.progress = 1.0;
[fileStream close];
NSLog(@"%f -------------------------------------------------------", lastProgress);
}
NSURLConnection urlConnection のデリゲートを SearchFeed.m クラスである self に設定しました。SearchFeed.h では、NSURLConnectionDataDelegate プロトコルを実装しようとしました。connectionDidFinishLoading、didReceiveResponse、didReceiveData メソッドを作成する必要がありましたが、これらのメソッドは呼び出されません。
プロトコルを適切に実装していないか、いくつかのメソッドを + として宣言し、いくつかのメソッドを - として宣言しています (一部のメソッドはクラス メソッドであり、一部はインスタンス メソッドです)。
downloadPDFToMyDocumentsFrom は、ユーザーがダウンロードをクリックしたときに呼び出されるクラス メソッドです。このメソッドは、NSURLConnection を設定し、URL などとデリゲートを設定し、fileStream を開いてデータを受信します。ただし、他のメソッドは呼び出されません。