From cbcab0ea1c9fe4e07a9cfc423291fe2c01e2694f Mon Sep 17 00:00:00 2001 From: "Pfeil, Scott Robert" Date: Tue, 30 Oct 2018 17:21:24 -0400 Subject: [PATCH] proper marking of delegate --- MVMCore/MVMCore/AlertHandling/MVMCoreAlertController.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/AlertHandling/MVMCoreAlertController.h b/MVMCore/MVMCore/AlertHandling/MVMCoreAlertController.h index c3763d8..21ea9e6 100644 --- a/MVMCore/MVMCore/AlertHandling/MVMCoreAlertController.h +++ b/MVMCore/MVMCore/AlertHandling/MVMCoreAlertController.h @@ -8,12 +8,13 @@ // Used by our alert handler. Not for subclassing. Simply keeps track of if it's visible. Tries to parallel the UIAlertView to make it easier for the MVMCoreAlertHandler. #import +#import @class MVMCoreAlertObject; @interface MVMCoreAlertController : UIAlertController @property (nonatomic, readonly, getter=isVisible) BOOL visible; @property (nullable, nonatomic, strong) MVMCoreAlertObject *alertObject; -@property (nullable, nonatomic, weak) id delegate; +@property (nullable, nonatomic, weak) NSObject *delegate; @end