We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The text was updated successfully, but these errors were encountered:
Sorry, something went wrong.
有的呢
还有另外一个问题,隐藏状态栏之后,iOS 10 之后的系统版本,状态栏有问题
谢谢,多谢参与,我们逐渐改进
No branches or pull requests
if (@available(iOS 10.0, *)) { // 这是在iOS10以上的系统打开方式,没有考虑else情况
[[UIApplication sharedApplication] openURL:URL options:@{UIApplicationOpenURLOptionUniversalLinksOnly : @no} completionHandler:^(BOOL success)
{
if (!success) {
[UIAlertController PAlertWithTitle:@"提示" message:@"打开失败" completion:nil];
}
}];
} eles {
该方法内部是不是需要加个判断,在iOS10以下系统无法跳转App Store
// 跳转苹果商店
[[UIApplication sharedApplication] openURL:URL];
}
The text was updated successfully, but these errors were encountered: