gpt4 book ai didi

ios - 从警报启动设置

转载 作者:行者123 更新时间:2023-12-01 17:12:53 25 4
gpt4 key购买 nike

我想从如下所示的警报中启动设置应用程序:

- (void)alertView:(UIAlertView *)alertView clickedButtonAtIndex:(NSInteger)buttonIndex

{
NSString * title = [alertView buttonTitleAtIndex:buttonIndex];
if([title isEqualToString:@"Ok"])
{
NSLog(@"Ok was selected.");
}
else if([title isEqualToString:@"Safari"])
{
NSLog(@"open Safari was selected.");
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs:root=General"]];
}

}

我使用了prefs:root = General,但是随后我从下面的链接中阅读...

iOS Launching Settings -> Restrictions URL Scheme

...这在ios5.1中是不可能的。实际上,它在模拟器中不起作用。我能做什么??谢谢您的帮助

最佳答案

尝试以下操作(适用于iOS 5及更高版本):

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"prefs://"]];

关于ios - 从警报启动设置,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9470125/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com