iOSでPDFファイルをAdobe Acrobat Readerに渡す方法
Adobe Acrobat Readerの画面にはなるのですが、指定したPDFが表示されません。どうしたらいいでしょうか?
-(void)hoge:(UIButton*)button{
NSString *path = [[NSBundle mainBundle]pathForResource:@"title1"fType:@"pdf"];
NSURL *url = [NSURL URLWithString:[NSString stringWithFormat:@"com.adobe.Adobe-Reader://%@", path]];
UIApplication *application = [UIApplication sharedApplication];
[application openURL:url options:@{} completionHandler:^(BOOL success) {
if (success) {
NSLog(@"Opened url");
}
}];
}