我正在开发iPhone应用程序,我正在尝试将以下网页集中在一起:https://ls.betradar.com/ls/livescore/?/betitbest/de/page/sportcenter_single#matchid_4768166
在UIWebView中。现在这通常不会是一个问题,但我正在缩放到因子为2.2的页面,以便从边缘到边缘跨越内容。
不幸的是,设置缩放系数时,内容不会显示在中心。
任何人都可以帮助我吗?我在加载视图时附加了我使用的代码:
- (void)viewDidLoad
{
[super viewDidLoad];
// Do any additional setup after loading the view, typically from a nib.
_urlOfLiveMatchView = [NSURL URLWithString:@"https://ls.betradar.com/ls/livescore/?/betitbest/de/page/sportcenter_single#matchid_4768166"];
NSURLRequest *requestObj = [NSURLRequest requestWithURL:_urlOfLiveMatchView];
[_matchAppView loadRequest:requestObj];
_matchAppView.scrollView.zoomScale = 2.2;
[self.navigationController setNavigationBarHidden:NO animated:YES];
}