如何确认crosswalk是否集成在iOS项目中?

时间:2015-12-08 15:53:39

标签: ios objective-c swift crosswalk-runtime

我尝试按照Extended WKWebView程序将crosswalk集成到我现有的iOS项目中。我已用

更新了pod文件
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];
}

但我无法确认该应用是否在项目中使用人行横道。 那么,请你建议我如何确认项目中正在使用人行横道。

0 个答案:

没有答案