Authored by 孟顺

wkwebview 新增 支持部分 scheme 跳转

review by 枪兵
... ... @@ -180,7 +180,15 @@ static float kprogressViewRadius = 2.0f;
- (NSMutableArray *)autoSchemes
{
if (!_autoSchemes) {
_autoSchemes = [[NSMutableArray alloc] initWithObjects:@"itms-apps", @"itms-appss", @"itmss", nil];
_autoSchemes = [[NSMutableArray alloc] initWithObjects:
@"itms-apps",
@"itms-appss",
@"itmss",
@"tel",
@"sms",
@"mailto",
@"yohoefashion4in1",
@"yohomars", nil];
}
return _autoSchemes;
}
... ...