TSMessage appears below navigationBar - looks awkward
I tried displaying a notification above the navigation bar (in a modal view embdedded in uinavigationviewcontroller). used: TSMessage.setDefaultViewController(self.navigationController)
that doesn't help, notification appears below the bar instead above it. is that a bug?
did you set atPosition:TSMessageNotificationPositionNavBarOverlay?
it worked for me with that.. [TSMessage showNotificationInViewController:self.messagesViewController.navigationController title:localNotificationTitle subtitle:localNotificationText image:localNotificationImage type:TSMessageNotificationTypeMessage duration:TSMessageNotificationDurationAutomatic callback:nil buttonTitle:nil buttonCallback:^{ NSLog(@"User tapped the button"); } atPosition:TSMessageNotificationPositionNavBarOverlay canBeDismissedByUser:YES];