change weak delegateObject to Strong, since delegate inside delegateObject are weak

This commit is contained in:
panxi 2019-05-10 13:29:58 -04:00
parent 00058468c1
commit da9cd08c26

View File

@ -44,7 +44,7 @@
// The load delegate
@property (nullable, weak, nonatomic) NSObject <MVMCoreLoadDelegateProtocol,MVMCorePresentationDelegateProtocol,MVMCoreActionDelegateProtocol> *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;