diff --git a/MVMCore/MVMCore/AlertHandling/MVMCoreTopAlertOperation.m b/MVMCore/MVMCore/AlertHandling/MVMCoreTopAlertOperation.m index f276c82..bab7707 100644 --- a/MVMCore/MVMCore/AlertHandling/MVMCoreTopAlertOperation.m +++ b/MVMCore/MVMCore/AlertHandling/MVMCoreTopAlertOperation.m @@ -61,7 +61,9 @@ if (self.isExecuting && !self.isCancelled && !self.isPaused) { [self updateDismissTimer]; UIView *topAlertView = [[MVMCoreObject sharedInstance].globalTopAlertDelegate getTopAlertView]; - [topAlertView updateTopAlertWith:topAlertObject]; + if ([topAlertView respondsToSelector:@selector(updateTopAlertWith:)]) { + [topAlertView updateTopAlertWith:topAlertObject]; + } } }