横向きの形式でセットアップされ、iPhone画面で非常に読みにくいPDFをロードするUIWebViewがあります。私のコードは次のようなものです:
- (void)viewWillAppear:(BOOL)animated {
NSURL *url = [NSURL URLWithString:_entry.articleUrl];
NSLog(@"%@",url);
[_webView loadRequest:[NSURLRequest requestWithURL:url]];
self.title = _entry.articleTitle;
timer = [NSTimer scheduledTimerWithTimeInterval:(1.0/2.0) target:self selector:@selector(tick) userInfo:nil repeats:YES];
}
さらにズームインして、おそらくトップpdfページの右側に移動するように設定する方法は何ですか?