-
Notifications
You must be signed in to change notification settings - Fork 79
Open
Description
I wrote this function as a way of reproducing the issue. If you try to "show" a notification while the previous notification is in the process of hiding, it will not display the message on the second time around.
This problem appears when the user has many notifications within a short amount of time.
- (void) notification{
[self.notificationView setTextLabel:@"message displayed"];
[self.notificationView show:YES];
[self.notificationView hideAnimatedAfter:1.0f];
[NSTimer scheduledTimerWithTimeInterval:1.0f
target:self
selector: @selector(notification)
userInfo:nil
repeats:NO];
}
Metadata
Metadata
Assignees
Labels
No labels
