我有一个带有许多 vie 控制器的项目,在其中一个中我创建并显示视图警报。可以在每个视图中显示警报排除一个吗?
我需要这个,因为如果您在警报视图控制器中,则不需要在警报响起时看到警报
我试试这个,但不起作用!
// ALERT NOTIFICATION
if (!self.timerViewController) {
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Piccole Ricette" message:@"READY" delegate:self cancelButtonTitle:@"OK" otherButtonTitles: nil];
[alertView show];
[alertView release];
}