3

DocumentViewController と LibraryViewController の 2 つの UIViewController クラスがあります。

クラス DocumentViewController には、次のコードがあります。

- (id)initWithURL:(NSString *)linkToPdf withFileName:(NSString *)fileName{
     //some code goes here ... 
}

そして、コードを使用して LibraryViewController から DocumentViewController クラスをロードしようとしています:

DocumentViewController *documentViewController = [[DocumentViewController alloc] initWithURL:@"http://investor.google.com/pdf/2012Q4_google_earnings_slides.pdf" withFileName:@"Google Earnings Slides"];
[self presentViewController:documentViewController animated:NO completion:nil];

ビルドすると、LibraryViewController クラスで「DocumentViewController」の可視 @interface が initWithURL:withFileName でセレクターを宣言していないというエラーが表示されます。

これを修正するにはどうすればよいですか?

4

1 に答える 1