アプリバンドルの中には、「ユーザーガイド」またはマニュアルとして使用されるPDFファイルがあります。
-(void)loadManual
{
UIWebView *webPDF = [[UIWebView alloc] initWithFrame:self.view.frame];
webPDF.delegate = self;
webPDF.backgroundColor = [UIColor blackColor];
webPDF.opaque = YES;
[self.view addSubview:webPDF];
webPDF.center = self.view.center;
webPDF.tag = 88;
NSString *thePath = [[NSBundle mainBundle] pathForResource:@"manual" ofType:@"pdf"];
if (thePath) {
NSData *pdfData = [NSData dataWithContentsOfFile:thePath];
[webPDF loadData:pdfData MIMEType:@"application/pdf"
textEncodingName:@"utf-8" baseURL:nil];
}
}
質問:サーバーで「manual.pdf」の新しいバージョンをエレガントにチェックするにはどうすればよいですか。サーバーに新しいバージョンがある場合は、ローカルファイルをダウンロードして置き換えます。