Skip to content

Notification not always displaying text #17

@jsealey

Description

@jsealey

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];
 }

iOS Simulator Screen shot Feb 21 2013 7 18 48 PM

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions