我尝试按照Extended WKWebView
程序将crosswalk集成到我现有的iOS项目中。我已用
platform :ios, '8.1'
pod 'crosswalk-ios', '~> 1.2'
use_frameworks!
这是项目中使用的代码
- (void)viewWillAppear:(BOOL)animated
{
WKWebViewConfiguration *configuration = [[WKWebViewConfiguration alloc] init];
self.webview=[[XWalkView alloc]initWithFrame:self.view.frame configuration:configuration];
self.webview.scrollView.bounces=NO;
[self.view bringSubviewToFront:self.webview];
[super viewWillAppear:animated];
}
但我无法确认该应用是否在项目中使用人行横道。 那么,请你建议我如何确认项目中正在使用人行横道。