我正在从事一个自动化项目。
使用定位服务时,显示警报。此处的警报消息是您是否要使用带有确定和取消按钮的定位服务。
现在我不想手动单击取消或确定按钮。我只想以编程方式获取系统警报并处理按钮单击。我使用的是 iOS 8 设备。可能吗?
Best Answer-推荐答案 strong>
使用这个概念的时间间隔
[self.locationManager startUpdatingLocation];
// after that add the following line
[NSTimer scheduledTimerWithTimeInterval:4.0 target:self selectorselector(cancelAlertinAutomatically userInfo:nil repeats:NO];
-(void)cancelAlertinAutomaticallyid)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/
|