From da9cd08c2621e9a33f0fd5a9921ed3dca2c944cc Mon Sep 17 00:00:00 2001 From: panxi Date: Fri, 10 May 2019 13:29:58 -0400 Subject: [PATCH] change weak delegateObject to Strong, since delegate inside delegateObject are weak --- MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.h b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.h index 876907e..c8ba157 100644 --- a/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.h +++ b/MVMCore/MVMCore/LoadHandling/MVMCoreLoadObject.h @@ -44,7 +44,7 @@ // The load delegate @property (nullable, weak, nonatomic) NSObject *delegate __deprecated; -@property (nullable, weak, nonatomic) DelegateObject *delegateObject; +@property (nullable, strong, nonatomic) DelegateObject *delegateObject; // The operation that is loading. @property (nullable, weak, nonatomic) MVMCoreLoadRequestOperation *operation;