Use a UIAlertView (without buttons) for something interesting to appear.
UIAlertView *alertView = [[UIAlertView alloc] initWithTitle:@"Title" message:@"" delegate:self cancelButtonTitle:@"" otherButtonTitles:nil]; [alertView show]; [alertView release];
Create an alertView rejection method after (say 2 seconds)
[self performSelector:@selector(byeAlertView:) withObject:alertView afterDelay:2]
The method of rejecting it ...
-(void)byeAlertView:(UIAlertView *)alertView{ [alertView dismissWithClickedButtonIndex:0 animated:YES]; }
source share