gpt4 book ai didi

iOS : How to handle System Alerts Programmatically inside the App?

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:12:51 25 4
gpt4 key购买 nike

我在一个自动化项目中工作。在使用位置服务时,它正在显示警报。此处的警告消息是您是否要使用“确定”和“取消”按钮使用定位服务。现在我不想手动单击取消或确定按钮。我只想以编程方式获取系统警报并处理按钮单击。我使用的是 iOS 8 设备。这可能吗?

最佳答案

使用这个概念的时间间隔

  [self.locationManager startUpdatingLocation];
// after that add the following line

[NSTimer scheduledTimerWithTimeInterval:4.0 target:self selector:@selector(cancelAlertinAutomatically:) userInfo:nil repeats:NO];

-(void)cancelAlertinAutomatically:(id)sender
{
NSLog(@"alert View is cancelled here");
[alert dismissWithClickedButtonIndex:0 animated:YES];
}

关于iOS : How to handle System Alerts Programmatically inside the App?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32368172/

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